body
{
    background-color: rgb(235, 237, 227);
    /* background-color: rgba(177, 177, 177, 0.733); */
}

/* For Dark abnd Light Theme */
/* For Dark abnd Light Theme */

.footer {
    position:fixed;
    bottom: 0;
    height: 50px;
    /* margin-top: 250px; */
    line-height: 50px;
    width: 100%;
    text-align: center;
    color: white;
    background-color: rgb(0, 0, 0);
}


  /* smooth animation for Alert Message */
  #flash-message {
    position: fixed; /* Position relative to the viewport */
    top: 10%; /* Center vertically */
    left: 40%; /* Center horizontally */
    /* transform: translate(-50%, -50%);  Adjust for exact center */
    z-index: 1000; /* Ensure it appears above other elements */
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    margin:auto;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 90%; /* Adjust for smaller screens */
    word-wrap: break-word;
    
    opacity: 0; /* Initially hidden */
    
    animation: fadeIn 3s ease-in-out ; /* Fade-in animation */
    animation: fadeOut 4s ease-in-out forwards; /* Fade-in animation */
    
}

/* Define the fadeIn animation */
@keyframes fadeIn {
    0% {
        opacity: 0; /* Start from invisible */
        transform: translate(0%, 0%); /* Start a bit above */
    }
    100% {
        opacity: 1; /* Fade to visible */
        transform: translate(0%, 0%); /* Final centered position */
    }
}

/* Optional: Slower fade-out animation */
.flash-message-hide {
    animation: fadeOut 2s ease-in-out; /* Increased duration to 2s */
}

/* Define the fadeOut animation */
@keyframes fadeOut {
    0% {
      transform: translate(0%, 0%); /* Final centered position */
        opacity: 1; /* Start from fully visible */
    }
    100% {
        opacity: 0; /* Fade to invisible */
        transform: translate(0%, 0%); /* Start a bit above */
    }
}


/* 8 Steps Form CSS Start Here */

.form-container {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
  }
  
  .form-step {
    display: none;
  }
  
  .form-step.active {
    display: block;
  }
  
  /* .step-buttons {
    display: flex;
    justify-content: space-between;
  } */
  
  .step-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    margin-top: 20px;
    position: relative;
  }
  
  .step-buttons .btn {
    min-width: 100px; /* Optional: Ensures consistent button size */
  }
  #prevButton {
    position: absolute;
    left: 0;
    display: none; /* Hide by default */
  }
  
  #prevButton.show {
    display: block; /* Show when needed */
  }
  
  #nextButton {
    position: absolute;
    right: 0;
    display: block; /* Always show Next */
  }
  
  
  
  .dynamic-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
  }
  
  .dynamic-table th,
  .dynamic-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
  }
  
  .dynamic-table th {
    background-color: #eee;
  }
  
  .add-row-btn {
    margin-top: 10px;
    cursor: pointer;
  }
  
  .entry-wrapper {
    border: 1px solid #d6d6d6;
    padding: 15px;
    box-shadow: 0px 5px 0px #0181f8;
    margin-bottom: 20px;
    /* background-color: rgb(233, 233, 233); */
    border-radius: 5px;
  }

/* 8 Steps Form CSS Start Here */

/* For user Profile css Start Here  */

.banner {
    width: 100%;
    height: 250px;
    border-radius: 10px 10px 0px 0px;
    /* background: url('../images/user/banner.jpg') center/cover no-repeat;   */
    background: url('../images/user/3.gif') center/cover no-repeat;  
    position: relative;
}

.profile-container {    
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    /* border: 4px solid #fff; */
    /* background: #dddddd00 url('https://via.placeholder.com/100') center/cover no-repeat; */
    background: #9c141400;
    position: relative;
    cursor: pointer;
}

.profile-image:hover .change-icon {
    display: block;
}

.change-icon {
    display: none;
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 25px;
    height: 25px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile_form-container {
    margin-top: 80px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* For user Profile css End Here  */

/* CSS For result table */
/* Result table container */
.result_table {
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

/* Header table */
.table_header {
  background-color: #f8f9fa; /* Light background for header */
  height: 50px;
  border-bottom: 1px solid #ddd; /* Divider line */
}

.table_header table {
  width: calc(100% - 0px); /* Adjust width to account for scrollbar */
  table-layout: fixed; /* Enforces column widths */
}

/* Body table */
.table_body {
  max-height: 250px; /* Scrollable height */
  overflow-y: auto; /* Enable vertical scrolling */
  position: relative;
}

.table_body table {
  width: 100%;
  table-layout: fixed; /* Enforces column widths */
  margin: 0; /* No extra spacing */
  border-left: 2px solid #0fc2a4;
  border-radius: 4px;
}

/* Column styles for alignment */
.table_header th,
.table_body td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;  
  box-sizing: border-box;
}

/* Fixed column widths */
.col-sn {
  width: 50px; /* Serial Number */
  text-align: center;
}

.col-name {
  width: 250px; /* FPO Name */
}

.col-reg {
  width: 150px; /* Registration Number */
  text-align: center;
}

.col-date {
  width: 150px; /* Date of Registration */
  text-align: center;
}

.col-actions {
  width: 150px; /* Actions */
  text-align: center;
}

/* Ensure scrollbars do not push table content */
.table_body::-webkit-scrollbar {
  width: 1px; /* Scrollbar width */

}

.table_body::-webkit-scrollbar-thumb {
  background: #0fc2a4; /* Scrollbar color */
  border-radius: 4px;
}

.table_body::-webkit-scrollbar-thumb:hover {
  background: #999; /* Scrollbar color on hover */
}

/* Button styling in Actions column */
.col-actions a {
  display: inline-block;
  padding: 5px 10px;
  font-size: 14px;
}

/* Align alternating rows */
/* .table_body tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.table_body tr:nth-child(even) {
  background-color: #ffffff;
} */


/* CSS For result table */
/* Login Con */
.login-con{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
}
/* Login Con */