/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}

/*Login Page*/
.body-login-page {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #706d6d;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 350px;
    width: 90%; /* Make it responsive */
}

.login-container img {
    width: 190px; /* Adjusted size for responsiveness */
    margin-bottom: 20px;
}

.login-container h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #333;
}

.login-container p {
    margin: 0 0 20px 0;
    font-size: 14px;
    color: #555;
}

.login-container input[type="email"], 
.login-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px; 
}

.login-container a {
    text-decoration: none;
    color: #0078D7;
    font-size: 12px;
}

.login-container a:hover {
    text-decoration: underline;
}

.login-container button {
    width: 100%;
    background-color: #ed1c24;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    align-items: center;
}

.login-container button:hover {
    background-color: #6d6e70;
}

/* Password Toggle */
.password-container {
    position: relative;
}

/* Ensure consistent input styling */
.password-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px; /* Consistent font size */
    box-sizing: border-box; /* Ensures padding doesn't affect width */
    transition: all 0.2s ease-in-out; /* Smooth transition for visual consistency */
}

/* Adjust padding for the toggle icon */
.password-container input {
    padding-right: 1rem; /* Space for the toggle icon */
}

.toggle-password {
    position: absolute;
    top: 45%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.toggle-password i {
    font-size: 1.2rem;
    color: #555;
}

.toggle-password:hover i {
    color: #0078D7;
}

body {
display: flex;
flex-direction: column;
min-height: 100vh;
/*background: #d3d3d3;*/
background: #780c0c;
overflow-x: hidden;
}

.body-main-menu{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /*background: #d3d3d3;*/
    background: #9f9696;
    overflow-x: hidden;

}

/* Topbar */
.topbar {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 90px;
background: #fff;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
border-bottom: 1px solid #ddd;
z-index: 1001;
}

.logo-container {
display: flex;
align-items: center;
margin-right: auto;
margin-left: 10px;
}

.logo-container2 {
    display: flex;
    align-items: center;
  }

  .logo-row {
    display: flex;
   
    align-items: center; /* This vertically aligns the logos */
    gap: 40px; /* Adjust space between logos */
  }

.logo {
height: 190px;
cursor: pointer;
}

.logo-main-menu{
    height: 90px;
    cursor: pointer;
}

.logo-main-menu2{
    height: 200px;
    width: 300px;
    cursor: pointer;
}

.logo-main-menu3{
    height: 100px;
    width: 300px;
    cursor: pointer;
}

.nav-links {
display: flex;
align-items: center;
margin-left: auto;
gap: 20px;
}

.nav-links.hidden {
display: none;
}

.burger {
display: none;
font-size: 24px;
cursor: pointer;
}

/* Navigation links */
.nav-links a {
text-decoration: none;
font-size: 1rem;
color: #333;
padding: 10px 15px;
transition: background 0.3s;
}

.nav-links a:hover {
background: #18749b;
color: #fff;
}
.hidden{
display: none;
}
.radio-group{
display: flex;
align-items: center;
gap: 10px;
}
.radio-group .btn{
padding: 5px 10px;
font-size: 0.8rem;
border-radius: 4px;
border: none;
cursor: pointer;
transition: background-color 0.2s ease, transform 0.2s ease;
}
.radio-group .btn.approved{
background-color: #28a745;
color: #fff;
}
.radio-group .btn.reject{
background-color: #dc3545;
color: #fff;
}
.radio-group .btn.undo{
background-color: #999;
color: #fff;
}
.radio-group .btn:hover{
transform: scale(1.05);
opacity: 0.9;
}
.radio-group .btn:not(:last-child){
margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
.burger {
display: block;
}

.logo {
height: 50px;
}

.logo-container {
    margin-left: 5px;
}

.nav-links {
flex-direction: column;
position: absolute;
top: 60px;
right: 0;
background: #fff;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
border-radius: 5px;
overflow: hidden;
}

.nav-links a {
padding: 10px 20px;
border-bottom: 1px solid #ddd;
cursor: pointer;
}

.nav-links a:last-child {
border-bottom: none;
}

.toggle-password {
    position: absolute;
    top: 45%;
    right: 25px;
    transform: translateY(-50%);
    cursor: pointer;
}

.password-container input {
    max-width: 90%;
}

}

/* Main Content */
.main-content {
flex-grow: 1;
display: flex;
flex-direction: column;
align-items: center;
margin-top: 80px;
padding: 1px;
overflow: hidden;
margin-bottom: 90px;
}

.main-content-accountant {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-start; /* Align items to the right */
    margin-top: 10px;
    padding: 1px;
    overflow: hidden;
    margin-bottom: 10px;
}


.container{
width: 100%;
max-width: 1000px;
margin-top: 30px;
background: #fff;
padding: 10px;
border-radius: 8px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
align-items: center;;
}

.container-eleave {
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    align-items: center;;
}

.container.reviewee{
    align-items: center;
    padding: 10px;
}

.container.reviewee.rv{
    margin-bottom: 90px;
}

.container.approver{
    margin-bottom: 90px;
    padding: 10px;
}

/* Header inside the container */
.container header {
font-size: 1.5rem;
color: #333;
font-weight: 500;
margin-bottom: 20px;
text-align: center;
}

.btn-reviewer{
    display:flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5px;
}

/* Form Styling */
.form {
margin-top: 20px;
}

.form .input-box {
width: 100%;
margin-top: 3px;
}

.input-box label {
color: #333;
font-size: 0.9rem;
}

.form input[type="text"],
.form input[type="number"],
.form input[type="date"],
.form select,
.form textarea {
width: 100%;
height: 40px;
margin-top: 5px;
padding: 0 10px;
font-size: 0.9rem;
color: #707070;
border: 1px solid #ddd;
border-radius: 6px;
outline: none;
}

textarea {
resize: none;
height: 80px;
}

/*.textarea-address {
    width: 100%;
    height: 50px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
    resize: none;
}*/

.form button {
height: 45px;
width: 100%;
color: #fff;
font-size: 0.9rem;
margin-top: 5px;
border: none;
border-radius: 8px;
cursor: pointer;
/*background: #6ec1e4;*/
background: #ed1c24;
transition: background 0.2s;
}

.form button:hover {
/*background: #18749b;*/
background-color: #941d1d;
}

.input-container {
display: flex;
align-items: center;
width: 100%;
max-width: 200px;
}

.input-container .fixed-text {
color: #333;
font-size: 0.9rem;
font-weight: 500;
margin-right: 5px;
}

.input-container input {
width: 100%;
height: 40px;
padding-left: 10px;
font-size: 0.9rem;
color: #707070;
border: 1px solid #ddd;
border-radius: 6px;
outline: none;
box-sizing: border-box;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button{
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"]{
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Table Styling */
.trf-table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}

.trf-table th, .trf-table td {
text-align: center;
padding: 10px;
border: 1px solid #ddd;
font-size: 0.9rem;
}

.trf-table th {
background: #f0f0f0;
font-weight: bold;
}

.trf-table tbody tr:nth-child(even) {
background: #f9f9f9;
}

/* Button Styling */
.btn {
padding: 3px 10px;
color: #fff;
/*background: #6ec1e4;*/
background: #d61111;
text-decoration: none;
border-radius: 5px;
transition: background 0.3s;
}

.btn:hover {
/*background: #18749b;*/
background: #ff0000;

}

.btn.home{
margin-top: 20px;
align-items: center;
margin-left: auto;
margin-right: auto;
}

/* Status Indicators */
.status {
padding: 5px 10px;
border-radius: 5px;
color: #fff;
font-size: 0.8rem;
text-transform: capitalize;
}

.status.approved {
background: #28a745;
}

.status.pending {
background: #ffc107;
}

.status.rejected {
background: #dc3545;
}

.status.paid {
    /*background: #28a745; /* Green */
    background: #FFEA00; /* Yellow */
}

.status.notpaid {
    /*background: #dc3545; /* Red */
    background: #FFA500; /*Neon Orange*/
}

.status.notrequested {
    /*background: #707070; /* Red */
    background: #d11ce5; /* Purple */
}

/* Buttons */
.btn-pdf {
padding: 5px 5px;
font-size: 0.8rem;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
}

.btn:hover {
/*background: #18749b;*/
background: #ff0000;
}

/* Status indicators */
.status {
padding: 5px 10px;
border-radius: 5px;
color: #fff;
font-size: 0.8rem;
text-transform: capitalize;
}

.status.pending {
background: #999;
}

.status.approved {
background: #28a745;
}

.status.rejected {
background: #dc3545;
}

.status.paid {
    /*background: #28a745; /* Green */
    background: #FFEA00; /* Yellow */
}

.status.notpaid {
    /*background: #dc3545; /* Red */
    background: #FFA500; /*Neon Orange*/
}

.status.notrequested {
    /*background: #707070; /* Red */
    background: #d11ce5; /* Purple */
}

/* Profile Styling */
.profile-container {
max-width: 900px;
margin: 80px auto;
background: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
overflow: hidden;
}

.profile-header {
text-align: center;
font-size: 2rem;
color: #333;
font-weight: 600;
margin-bottom: 30px;
}

/* Profile Form */
.input-box {
display: flex;
position: relative;
flex-direction: column;
margin-bottom: 20px;
}

.input-box label {
font-size: 1rem;
font-weight: 500;
color: #555;
margin-bottom: 8px;
}

.input-box input {
padding: 12px;
font-size: 1rem;
color: #333;
background: #f9f9f9;
border: 1px solid #ddd;
border-radius: 5px;
outline: none;
}

.input-box input[readonly] {
background: #f3f3f3;
cursor: not-allowed;
}

/*Profile Account Table*/
.profile-account-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.profile-account-table th, .profile-account-table td {
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    }

.profile-account-table th {
    background: #f0f0f0;
    font-weight: bold;
    }
        
.profile-account-table tbody tr:nth-child(even) {
    background: #f9f9f9;
    }

.profile-table-container{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    }
        
.profile-table-container, .profile-main-content{
    position: relative;
    z-index: 1;
    }

/* Signature Box */
.signature-box {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
    border: 2px solid #ddd; /* Add a border around the box */
    padding: 20px; /* Add some padding inside the box */
    margin: 10px 0; /* Add some margin above and below the box */
    background-color: #f9f9f9; /* Background color for the box */
    border-radius: 5px; /* Rounded corners */
}

.signature-image {
    max-width: 100%; /* Ensure the image is responsive */
    max-height: 150px; /* Set a maximum height for the image */
}

/* Form Buttons */
.form-actions {
display: flex;
justify-content: flex-end;
gap: 15px;
}

.btn {
padding: 10px 20px;
font-size: 1rem;
color: #fff;
/*background: #6ec1e4;*/
background: #d61111;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s ease;
}

.btn:hover {
/*background: #18749b;*/
background: #ff0000;
}
.btn.upload{
    background: #4CAF50;
}
.btn.undo-btn {
background: #999;
}
.btn.cancel-btn {
/*background: #e74c3c;*/
background: #9e9e9e;
}

.btn.cancel-btn:hover {
background: #757575;
/*background: #c0392b;*/
}

.hidden {
display: none;
}

/*Pagination*/
.pagination-container{
text-align: center;
margin-top: 10px;
margin-bottom: 15px;
}

.pagination-container .btn{
padding: 5px 10px;
font-size: 0.8rem;
color: #fff;
/*background: #6ec1e4;*/
background: #d61111;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background 0.3s ease;
margin: 0 3px;
display: inline-block;
width: auto;
}

.pagination-container .page-info{
font-size: 0.8rem;
}

.pagination-container .btn:disabled{
background: #ddd;
cursor: not-allowed;
}

.pagination-container .btn:hover:not(:disabled){
/*background: #18749b;*/
background: #ff0000;
}

/* Profile Image */
.profile-card {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
background: #fff;
border-radius: 8px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
margin-top: 20px;
}

.profile-pic {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
border: 3px solid #6ec1e4;
}

.profile-details {
width: 100%;
max-width: 600px;
}

.detail-row {
display: flex;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px solid #ddd;
}

.signature-image{
    width: 200px;
}
.detail-label {
font-weight: 500;
color: #333;
font-size: 1rem;
}

.detail-value {
font-weight: 400;
color: #555;
font-size: 1rem;
text-align: right;
}

.profile-actions {
margin-top: 20px;
display: flex;
justify-content: center;
gap: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.profile-container {
padding: 15px;
}

.form-actions {
flex-direction: column;
gap: 10px;
}
.pagination-container .btn{
width: auto;
}
.btn {
width: 100%;
}

.login-container {
    padding: 15px; /* Reduce padding */
    width: 80%; /* Use a larger percentage for smaller screens */
}
.login-container img {
    width: 70px; /* Adjust image size */
}
.login-container h2 {
    font-size: 20px; /* Adjust font size */
}
.login-container input[type='email'],
.login-container input[type='password'] {
    width: 90%;
}
.login-container button{
    width: 90%;
}

.container{
    width: 100%;
    padding: 10px;
}
.container.stat{
    width: 100%;
    padding: 15px;
}
}

.table-container{
overflow-x: auto;
-webkit-overflow-scrolling: touch;
margin-top: 20px;
border: 1px solid #ddd;
border-radius: 6px;
}

.table-container, .main-content, .main-content-accountant{
    position: relative;
    z-index: 1;
}

.main-content.reviewee{
    margin-bottom: 40px;
}

.main-content.approver{
    margin-bottom: 40px;
}

.main-content.apptrf{
    margin-bottom: 40px;
}

.main-content.profile{
    margin-bottom: 40px;
}

.main-content-accountant.accounts{
    margin-bottom: 10px;
}

.trf-table{
width: 100%;
min-width: 600px;
border-collapse: collapse;
}

.trf-table th, .trf-table td{
text-align: center;
padding: 10px;
border: 1px solid #ddd;
font-size: 0.9rem;
}

.trf-table th{
    color: black;
    font-weight: bold;
    }

.trf-table.reviewer th{
    color: black;
    background: #f5b767;
    font-weight: bold;
    }

.trf-table th{
    color: black;
    font-weight: bold;
    }
    

.trf-table.approver th{
    background: #5badf5;
    font-weight: bold;
}

.trf-table.accounts th{
    background: #f55be8;
    font-weight: bold;
}

.trf-table tbody tr:nth-child(even){
background: #f9f9f9;
}

.dropdown{
position: relative;
display: inline-block;
}

.dropdown-btn{
padding: 10px 15px;
/*background: #6ec1e4;*/
background: #ed1c24;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 0.9rem;
transition: background 0.3s ease;
}

.dropdown-btn:hover{
/*background: #18749b;*/
background: #ff0000;
}

.dropdown-content{
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 120px;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
z-index: 10000;
border-radius: 5px;
overflow: hidden;
}

.dropdown-content a{
color: #333;
padding: 10px 15px;
text-decoration: none;
display: block;
transition: background 0.3s ease;
font-size: 0.9rem;
}

.dropdown-content a:hover{
background: #ddd;
}

.dropdown.open .dropdown-content{
display: block;
}

#warning-modal{
    display: flex;
    justify-content: center;
    align-items: center;
}

.status-guide-box {
    margin-top: 15px; /* Space between guide and table */
    padding: 8px; /* Inner spacing */
    background-color: #f9f9f9; /* Light background */
    border: 1px solid #ddd; /* Border for clarity */
    border-radius: 6px; /* Rounded edges */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 230px;
    margin-right: auto;
}

.status-guide-box h3 {
    font-size: 0.5rem;
    color: #333;
    margin-bottom: 5px;
    text-align: left;
}

.status-guide {
    display: flex; /* Flex container */
    flex-wrap: nowrap;
    gap: 10px; /* Space between items */
    align-items: center; /* Center items */
}

.status{
    display: inline-flex;
    align-items: center;
}

.status-guide div {
    display: flex; /* Align dot and text */
    align-items: center;
    gap: 8px; /* Space between dot and text */
    font-size: 0.70rem;
    color: #555;
}

.status-dot {
    width: 10px; /* Dot size */
    height: 10px;
    border-radius: 50%; /* Make it a circle */
    display: inline-block;
    margin-right: 4px;
}

.status-dot.stat{
    width: 10px;
    height: 10px;
}

.status-dot.approved {
    background-color: #28a745; /* Green */
}

.status-dot.reviewed {
    background-color: #007bff; /* Blue */
}

.status-dot.pending {
    background-color: #999; /* Grey */
}

.status-dot.rejected {
    background-color: #dc3545; /* Red */
}

.status-dot2 {
    width: 10px; /* Dot size */
    height: 10px;
    border-radius: 50%; /* Make it a circle */
    display: inline-block;
    margin-right: 4px;
}

.status-dot2.stat{
    width: 10px;
    height: 10px;
}

.status-dot2.paid {
    /*background-color: #28a745; /* Green */
    background-color: #FFEA00; /* Yellow */
}

.status-dot2.notpaid {
    /*background-color: #007bff; /* Blue */
    background-color: #FFA500; /* Neon Orange */
}

.status-dot2.reject {
    background-color: #dc3545; /* Red */
}

.status-dot2.notrequested {
    /*background-color: #707070; /* Red */
    background-color: #d11ce5; /* Purple */
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
    justify-content: center;
    align-items: center;    
}

.modal:not(.hidden){
    display: flex;
}

.modal-content{
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
    max-width: 90%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 900px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center child elements horizontally */
    max-height: 90%;
    overflow-y: auto;
}

.modal.hidden{
    display: none;
}

.modal-content{
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mnodal-content h2{
    margin-bottom: 15px;
    font-size: 20px;
}

.mnodal-content p{
    margin-bottom: 20px;
    font-size: 16px;
}

.modal-buttons{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.modal-buttons .btn{
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.modal-buttons .btn:first-child{
    background-color: #4caf50;
    color: white;
}

.modal-buttons .btn:last-child{
    background-color: #f44336;
    color: white;
}

.hidden{
    display: none;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    background: #fff; /* White background for visibility */
    border-radius: 50%; /* Makes it a perfect circle */
    width: 30px; /* Fixed width */
    height: 30px; /* Fixed height */
    display: flex; /* Center the "×" inside the circle */
    align-items: center;
    justify-content: center;
    z-index: 10; /* Ensure it stays on top */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.close-btn:hover {
    background: #ddd; /* Subtle hover effect */
}

.btn-edit {
    align-items: ce;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: block; /* Ensures it's below the iframe */
    width: auto; /* Adjust size */
}

.btn-edit:hover {
    /*background-color: #0056b3;*/
    background-color: #ff0000;
}

/* Custom Alert Box Styling */
.custom-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.alert-box {
    background-color: white;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-out;
}

.alert-box h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.alert-box p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.btn-alert {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.btn-alert .confirm {
    padding: 10px 20px;
    font-size: 14px;
    color: white;
    background-color: #28a745; /* Green */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-alert .confirm:hover {
    background-color: #218838; /* Darker green */
}

.btn-alert .cancel {
    padding: 10px 20px;
    font-size: 14px;
    color: white;
    /*background-color: #dc3545; /* Red */
    background-color: #9e9e9e;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-alert .cancel:hover {
    /*background-color: #c82333; /* Darker red */
    background-color: #757575;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


.signature-box{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ccc;
    padding: 20px;
    margin: 10px 0;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.signature-image{
    max-width: 100%;
    max-height: 150px;
}

/* Modal Background */
.custom-logout-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal Content */
.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Modal Header */
.modal-header {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Modal Body */
.modal-body {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Modal Buttons */
.modal-buttons {
    display: flex;
    justify-content: space-between;
}

.btn-confirm {
    background-color: #f44336;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-confirm:hover {
    background-color: #d32f2f;
}

.btn-cancel {
    background-color: #9e9e9e;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-cancel:hover {
    background-color: #757575;
}

.session-name{
    margin-top: 50px;
}

/*Line between radio button box in apply trf page*/
hr {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 20px 0;
}

input-box input[type="file"] {
    padding: 5px;
    font-size: 0.9rem;
    border: none;
    border-radius: 6px;
    background: #f9f9f9;
    outline: none;
    cursor: pointer;
}

/*Inline role radio button*/
.role-options label {
    display: block;
    margin-right: 15px;
    font-size: 14px;
    cursor: pointer;
}

.role-options input[type="radio"] {
    margin-right: 5px;
}

/*hierarchy*/
/*.suggestions-box {
    position: absolute;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background-color: #fff;
    z-index: 10;
    width: calc(100% - 20px);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.suggestions-box div {
    padding: 8px;
    cursor: pointer;
}

.suggestions-box div:hover {
    background-color: #f0f0f0;
}

.hidden {
    display: none;
}

.suggestions-box-approver {
    position: absolute;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background-color: #fff;
    z-index: 10;
    width: calc(100% - 20px);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.suggestions-box-approver div {
    padding: 8px;
    cursor: pointer;
}

.suggestions-box-approver div:hover {
    background-color: #f0f0f0;
}*/

/*hierarchy*/
.suggestions-box,
.suggestions-box-approver {
    position: absolute;
    top: 100%; /* Position the suggestion box directly below the input field */
    left: 0;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background-color: #fff;
    z-index: 1;
    width: 100%; /* Align the width with the input box */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 5px; /* Add some space between the input and suggestions */
}

.suggestions-box,
.suggestions-box-approver {
    border-radius: 4px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.suggestions-box div:hover,
.suggestions-box-approver div:hover {
    background-color: #eaeaea; /* Slightly darker for a hover state */
}
