/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 11 Feb, 2024, 12:16:59 PM
    Author     : aditya.k
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

html {
    overflow-x: hidden;
}

body {
    background: #eee;
    overflow-x: hidden;
}

 /*SIDEBAR*/ 
#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background-color: #ffffff;
    z-index: 2000;
    font-family: 'Politica' !important;
    transition: .3s ease;
    overflow-x: hidden;
    scrollbar-width: none;
}

#sidebar .brand {
    font-size: 24px;
    font-weight: 700;
    height: 56px;
    display: flex;
    align-items: center;
    color: #3C91E6;
    position: sticky;
    top: 0;
    left: 0;
    background-color: #ffffff;
    z-index: 500;
    padding-bottom: 20px;
    box-sizing: content-box;
}

#sidebar .brand .logo-container {
    display: inline-block;
    margin-right: 10px;  
    margin-left: 20px;
    margin-top: 90px;   
}

#sidebar .brand .logo-container img {
    width: 200px;  
    height: auto; 
}

#sidebar .side-menu {
    width: 100%;
    margin-top: 60px;
}

#sidebar .side-menu li {
    height: 40px;
    background: transparent;
    margin-left: 6px;
    border-radius: 48px 0 0 48px;
    padding: 4px;
}

#sidebar .side-menu li.active {
    background: #eee;
    position: relative;
}

#sidebar .side-menu li a {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    border-radius: 48px;
    font-size: 16px;
    color: #342E37;
    white-space: nowrap;
    overflow-x: hidden;
}

#sidebar .side-menu.top li.active a {
    color: #3C91E6;
}

#sidebar .side-menu.top1 li.active a {
    color: #3C91E6;
}

#sidebar .side-menu li a.logout {
    color: #DB504A;
}

#sidebar .side-menu li a .bx {
    min-width: calc(60px  - ((4px + 6px) * 2));
    display: flex;
    justify-content: center;
}

#sidebar .side-menu .sub-menu {
    margin-top: 0; 
}

#sidebar .side-menu .sub-menu li {
    border-radius: 0;  
    margin-left: 0;  
}

#sidebar .side-menu .sub-menu li a {
    padding-left: 40px;  
}

#sidebar .sub-menu {
    display: none;
}

#sidebar .sub-menu.active {
    display: block;
}
/*SIDEBAR*/ 

/* CONTENT */
#content {
    position: relative;
    width: calc(100% - 280px);
    left: 280px;
    transition: .3s ease;
}

#sidebar.hide ~ #content {
    width: calc(100% - 60px);
    left: 60px;
}

.no-data {
    background-color: #f2f2f2; /* Light gray background */
    font-style: italic;
    color: #000000; /* Light text color */
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden; /* Hide overflow text */
    /*animation: moveLeftRight 2s infinite alternate;  Horizontal movement */
}
/* CONTENT */

/* NAVBAR */
#content nav {
    height: 55px;  /* Adjust this value to your desired height */
    background-color: #ffffff; /* Light gray background */
    padding: 0 24px;
    display: flex;
    align-items: center;
    grid-gap: 24px;
    font-family: 'Politica' !important;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

#content nav::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -40px;
    left: 0;
    border-radius: 50%;
    box-shadow: -20px -20px 0 #ffffff;
}

#content nav form {
    max-width: 400px;
    width: 100%;
    margin-right: auto;
}

#content nav .profile img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 60%;
}
/* NAVBAR */

/* MAIN */
#content main {
    width: 100%;
    padding: 36px 24px;
    font-family: 'Politica' !important; 
    max-height: calc(100vh - 56px);
    overflow-y: auto;
}

#content main .head-title {
    font-family: 'Politica' !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

#content main .head-title .left h1 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #342E37;
}

#content main .box-info1 { 
    font-family: 'Politica' !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-gap: 30px;
    margin-top: 16px;
}

#content main .box-info li {
    padding: 24px;
    background-color: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    grid-gap: 24px;
}

#content main .box-info li .bx {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content main .box-info1 li {
    padding: 24px;
    background-color: #ffffff;
    border-radius: 20px;
    display: flex; /* Change to flex to align items */
    align-items: center;
    justify-content: center; /* Horizontally center the items */
    flex-direction: column; /* Stack items vertically */
    /*border: 2px solid #00a0e3;  Add blue border */
}

#content main .box-info1 li:hover {
    background-color: #e2f6ff; /* Change to the desired color */
    color: white; /* Change to the desired color */
}

#content main .box-info1 li .bx {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px; /* Adjust margin for spacing */
}

#content main .box-info1 li .text {
    text-align: center; /* Center align the text */
}

#content main .box-info1 li .text h3 {
    font-size: 24px;
    font-weight: 600;   
    color: #00a0e3;
}
/* MAIN */

/*EDIT BUTTON*/
#content main .head-title .btn-edit {
    height: 36px;
    padding: 0 16px;
    border-radius: 36px;
    border: 2px solid #3C91E6; 
    background: transparent; 
    color: #3C91E6;
    background-color: #3C91E6;  
    color: #F9F9F9;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
    font-weight: 500;
    transition: background-color 0.3s ease;  
}

#content main .head-title .btn-edit:hover {
    border: 2px solid #3C91E6;  
    background: transparent;  
    color: #3C91E6;
    background-color: #3C91E6;   
    color: #F9F9F9;
}
/*EDIT BUTTON*/

/* Dropdown styles */
.profile-container .dropdown {
    display: none;
    position: absolute;
    top: 50px; /* Adjust the distance from the profile image */
    right: 40px; 
    background-color: #fff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 1;
    padding: 5px;
    border: 1px solid #ccc; /* Add border with gray color */
}

.profile-container .dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.profile-container .dropdown li {
    padding: 10px;
    text-align: center;
    cursor: pointer; /* Make the options selectable */
}

.profile-container .dropdown a {
    text-decoration: none;
    color: #333;
    display: block;
    display: inline-flex;
}
    
/* Display the dropdown when the class "open" is added */
.profile-container .dropdown.open {
    display: block;
}

/* Additional style for dropdown options on hover */
.profile-container .dropdown li:hover {
    background-color: #ddd; /* Adjust the background color on hover for a visual indication */
}
    
.profile-container .dropdown li {
    border-bottom: 1px solid #ddd; /* Add a border between li elements */
}

.profile-container .dropdown li:last-child {
    border-bottom: none; /* Remove the border from the last li element */
}

 .profile-container .dropdown .logout-item a .text {
    color: #DB504A;
}
  
.profile-container .profile .arrow-icon img {
    margin-right: 0; /* Adjust the spacing for the arrow */
    transition: transform 0.3s ease; /* Add transition for smooth rotation */
}

.profile-container .profile .up .arrow-icon img {
    transform: rotate(180deg); /* Rotate the arrow when 'up' class is present */
}

.profile-container .profile {
    cursor: pointer; /* Set cursor to pointer by default */
}

.profile-container .profile:hover {
    cursor: pointer; /* Change cursor to pointer on hover */
}

.dropdown ul li a .bx-log-out {
    font-size: 16px; /* Adjust the font size as needed */
    color: #DB504A;
     margin-right: 5px;
}

.dropdown ul li a .bx-log-out,
.dropdown ul li a .text {
    font-weight: bold;
}

/* LOGOUT BUTTON */
#sidebar .side-menu.bottom {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

#sidebar .side-menu.bottom li {
    margin-bottom: 8px;
}

.button-container {
    text-align: right; /* Aligns the buttons to the right */
}

.button-container button {
    margin-left: 5px; /* Optional: Add some spacing between the buttons */
}

.form-row {
    display: flex;
}

.form-column {
    flex: 1;
    margin-right: 20px; /* Adjust spacing between columns as needed */
}

.form-group {
    margin-bottom: 14px;
}

label {
    display: block;
    margin-bottom: 8px; /* Increase margin for additional spacing */
    font-size: 16px; /* Adjust font-size to make the label text bigger */
}

input, select {
    width: 100%;
    padding: 12px; /* Increase padding to make the box bigger */
    border: 1px solid #ddd;
    border-radius: 6px; /* Increase border-radius for rounded corners */
    box-sizing: border-box;
    height: 38px; /* Increase height to make the box taller */
    /*background: var(--grey);*/
}

input::placeholder, select::placeholder {
    font-size: 15px; /* Adjust font-size to make the placeholder text bigger */
}

select {
    font-size: 14px; /* Set font size for all options */
}

select option {
    font-size: 14px; /* Set font size for all options */
}

select:focus option[value=""] {
    font-size: 14px; /* Adjust font-size to make the default option text bigger */
}

select option[value="-1"] {
    font-size: 14px; /* Adjust font-size to make the option text bigger */
}

input[type="text"] {
    font-size: 12px; /* Adjust font-size to make the text bigger */
}

.btn.btn-primary {
    display: inline-block;
    padding: 6px 12px; /* Adjusted padding for smaller size */
    font-size: 12px; /* Adjusted font size for smaller size */
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    /*float: right;*/
    border: 2px solid #3C91E6;
    border-radius: 8px;
    color: #3C91E6;
    background: #ffffff;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn.btn-primary:hover {
    background: #3C91E6;
    color: #ffffff;
    border-color: #3C91E6;
}

.table-data {
    width: 100%;
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 20px;
}

.order {
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.head {
    padding: 15px;
    border-bottom: 1px solid #e6e6e6;
}

.card {
    margin: 15px 0;
}

.body {
    padding: 15px;
}

.header {
    text-align: center;
}

.content {
    max-height: auto;
    overflow: auto;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}


/*LOGIN*/ 
.center-text {
    text-align: center;
}           
            
.custom-width {
    max-width: 400px; /* Adjust the value as needed */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
       
body {
    font-family: poppins, sans-serif;
    background: #eee;
}
            
#captcha {
    max-width: 350px;
    margin: 0 auto;
    padding: 25px;
    background-color: #e5e5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
            
#captcha p {
    font-size: 18px;
    margin: 0;
}
            
#captchaExpression {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}
            
#captchaInput {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    margin-top: 8px;
    border-radius: 8px;
}
            
#captchaResult {
    display: block;
    color: red;
    font-size: 14px;
    margin-top: 5px;
}
            
.chk{
    cursor: pointer;
}

footer a {
    color: black; /* Set the color to black */
}

.card-registration {
    background-color: #ffffff;
    color: #000000;
    border-radius: 15px;
}

.logo-container {
    text-align: center; 
    padding: 20px; /* Adjust the padding as needed */
    background-color: #3C91E6; /* Set blue background color */
    border-radius: 10px;
    margin-bottom: 20px; /* Adjust the margin as needed */
}

.logo-container img {
    max-width: 100%;
    height: auto;
}

.button-container1 {
    text-align: center;
    margin-top: 20px;
    border-radius: 8px;
}

.btn-lg {
    width: 100%; /* Adjust the width as needed */
    padding: 20px 15px; /* Adjust the padding to increase height */
    border-radius: 8px;
}

.btn-primary {
    background-color: #3C91E6; /* Set blue background color */
    color: #ffffff; /* Set text color to white */
    border: 2px solid #3C91E6; /* Set solid blue border color */
    transition: background-color 0.3s, color 0.3s, border-color 0.3s; 
}

.text-danger {
    color: red;
}

.custom-notification-strip {
    position: fixed;
    top: 90px; /* Change from bottom to top */
    right: 10px;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.notification-content {
    color: #2ba728; /* Set text color */
}
    
.notification-content-fail {
    color: #c73033; /* Set text color */
}
    
.boxed-text {
    background-color: #E7EFF8;
    padding: 7px; /* Increased padding for better appearance */
    margin: 20px 0 35px; /* Added bottom margin of 15px */
    border-radius: 8px;
}
 
.boxed-text p {       
    font-size: 18px; /* Adjust the font size as needed */
    color: #3C91E6; /* Make the text color blue */
    margin-left: 10px;
    font-weight: 500;
}
    
.boxed-text h5 {
    margin-left: 10px;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 400;        
    color: #8A8A8A; /* Make the <h5> text color blue */
}

.eye-icon {
    position: absolute;
    right: 10px; 
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    pointer-events: auto;
    z-index: 1;   
}

.email-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 1;
    padding-left: 10px;
    border-radius: 8px;
}

.email-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 34px; /* Adjust the width as needed */
    height: 38px;
    background-color: #DDDDDD; /* Gray background color */
    z-index: -1;
    border-radius: 3px;
}

.lock-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 1;
    padding-left: 10px;
    border-radius: 8px;
}

.lock-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 34px; /* Adjust the width as needed */
    height: 38px;
    background-color: #DDDDDD; /* Gray background color */
    z-index: -1;
    border-radius: 3px;
}
/*LOGIN*/ 

#content main .box-info .text {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/*CONTENT CSS*/
.dotted-line {
    border-bottom: 1px dotted #000; /* Adjust the color and style as needed */
    margin-top: 20px;
}

.dotted-line1 {
    border-bottom: 1px dotted #000; /* Adjust the color and style as needed */
    margin-top: 20px;
}
    
.bg-title {
    font-size: 1.2em; /* Adjust the size as needed */
    margin-bottom: 15px; /* Adjust the margin as needed */
}

.bg-para {
    font-size: 2.3em; /* Adjust the size as needed */
}

.illst-img {
    width: 400px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Optional: Add margin between images */
}

.dialog-images-wrapper {
    display: flex;
    margin-bottom: 20px; /* Adjust as needed for bottom space */
}

.dialog-images-wrapper img {
    margin-right: 20px; /* Adjust as needed for space between images */
}

.doc-img-sm {
    width: 700px; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
}

.doc-list-hdrmodal-content {
  background-color: #fefefe;
  /*margin: auto;*/
  padding:0px;
  border: 1px solid #888;
  width: 95%;
  max-width:400px;
}

.doc-list-txt{
    display:flex; 
    border-bottom:1px dashed #333;
    justify-content: space-between;
}

.doc-list-txt-left{
    font-size:20px;
    margin-top:10px;
    width:50%; 
    flex: 1; 
}
	
.doc-list-txt-right{
    font-size:20px; 
    margin-top:10px;
    /*width:50%;*/
    /*flex: 1;*/ 
    margin-left: 280px;  
}

.doc-list-hdr{
    font-size:22px; 
    width:100%; 
    margin-bottom:10px; /* Adjusted margin-bottom */
    /*margin-top:20px;*/
    border-bottom:2px solid #000000; 
    color: #00a0e3;
    padding-bottom: 10px; /* Adjust the padding as needed */
}

.doc-img-sm2 {
    max-width: 200px; /* Adjust as needed */
    max-height: 200px; /* Adjust as needed */
}

.doc-right-list img {
    margin-right: 30px; /* Adjust this value to the desired spacing */
    margin-top: 30px; /* Adjust this value to the desired spacing */
}

.mob-typo{
    padding-left: 10px !important; 
    flex-wrap: wrap;
}
/*CONTENT CSS*/

.btn.btn-primary1 {
    display: inline-flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    padding: 7px 10px; /* Adjusted padding for smaller size */
    font-size: 20px; /* Adjusted font size for smaller size */
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #3C91E6;
    border-radius: 8px;
    color: #3C91E6;
    background: #ffffff;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn.btn-primary1:hover {
    background: #3C91E6;
    color: #ffffff;
    border-color: #3C91E6;
}

.btn.btn-danger1 {
    display: inline-flex;
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    padding: 7px 10px; /* Adjusted padding for smaller size */
    font-size: 20px; /* Adjusted font size for smaller size */
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #dc3545;
    border-radius: 8px;
    color: #dc3545;
    background-color: #ffffff;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn.btn-danger1:hover {
    background-color: #dc3545;
    color: #ffffff;
    border-color: #dc3545;
}

/*EDIT FORM*/
#content main .custom-form {
    margin-top: 20px;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 800px; /* Adjust width as needed */
}

#content main .custom-form label {
    display: block;
    margin-bottom: 5px;
}

#content main .custom-form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

#content main .custom-form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

.form-row {
    display: flex;
}

.form-column {
    flex: 1;
    margin-right: 20px; /* Adjust spacing between columns as needed */
}

.form-group {
    margin-bottom: 14px;
}

label {
    display: block;
    margin-bottom: 8px; /* Increase margin for additional spacing */
    font-size: 16px; /* Adjust font-size to make the label text bigger */
}

input, select {
    width: 100%;
    padding: 12px; /* Increase padding to make the box bigger */
    border: 1px solid #ddd;
    border-radius: 6px; /* Increase border-radius for rounded corners */
    box-sizing: border-box;
    height: 38px; /* Increase height to make the box taller */
    /*background: var(--grey);*/
}

textarea {
    width: 100%;
    padding: 12px; /* Increase padding to make the box bigger */
    border: 1px solid #ddd;
    border-radius: 6px; /* Increase border-radius for rounded corners */
    box-sizing: border-box;
    height: 100px; /* Increase height to make the box taller */
    resize: vertical; /* Allows vertical resizing only */
    font-size: 14px;
}

input::placeholder, select::placeholder {
    font-size: 15px; /* Adjust font-size to make the placeholder text bigger */
}

select {
    font-size: 14px; /* Set font size for all options */
}

select option {
    font-size: 14px; /* Set font size for all options */
}

select:focus option[value=""] {
    font-size: 14px; /* Adjust font-size to make the default option text bigger */
}

select option[value="-1"] {
    font-size: 14px; /* Adjust font-size to make the option text bigger */
}

input[type="text"] {
    font-size: 12px; /* Adjust font-size to make the text bigger */
}

.btn.btn-primary {
    display: inline-block;
    padding: 6px 12px; /* Adjusted padding for smaller size */
    font-size: 12px; /* Adjusted font size for smaller size */
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    /*float: right;*/
    border: 2px solid #3C91E6;
    border-radius: 8px;
    color: #3C91E6;
    background: #ffffff;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn.btn-primary:hover {
    background: #3C91E6;
    color: #ffffff;
    border-color: #3C91E6;
}

.btn.btn-danger {
    display: inline-block;
/*    align-items: center;  Center items vertically 
    justify-content: center;  Center items horizontally */
    padding: 6px 12px; /* Adjusted padding for smaller size */
    font-size: 12px; /* Adjusted font size for smaller size */
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: 2px solid #dc3545;
    border-radius: 8px;
    color: #dc3545;
    background-color: #ffffff;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn.btn-danger:hover {
    background-color: #dc3545;
    color: #ffffff;
    border-color: #dc3545;
}

.container1 {
    display: flex;
    justify-content: space-between;
}

.table-data1 {
    width: 28%; /* Adjust width as needed */
    order: 2; /* Change the order to 2 to place it on the right */
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 20px;
}

#content main table.box-version th,
#content main table.box-version td {
    padding: 12px;
    text-align: left;
    border: 1px solid #cfcfcf; /* Dark gray border color */
    background-color: #f6f6f6;
    border-radius: 8px; /* Add border-radius for curved edges */
}

td a.btn.btn-label {
    display: inline-block;
    padding: 4px 15px;
    font-size: 14px;
    color: white;
    text-decoration: none;
    pointer-events: none;
    border-radius: 20px;
    border: 2px solid #3C91E6;
}

td a.btn.btn-label:hover {
    color: white;
    background-color: #3C91E6;
    border-color: #3C91E6;
}

#content main .table-version > div {
    border-radius: 20px;
    background: #F9F9F9;
    padding: 24px;
    overflow-x: auto;
}

.table-version {
    width: 70%;
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 20px;
}

#content main table.box-version {
    width: 100%;
    border-collapse: collapse;
    margin-top: 36px;
}

#content main table.box-version th,
#content main table.box-version td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ffffff; /* Dark gray border color */
    border-radius: 8px; /* Add border-radius for curved edges */
    background: #f6f6f6;
}

#content main table.box-version th {
    background: #F9F9F9; /* Header background color */
    font-weight: 600;
}

#content main .roles-table-version > div {
    border-radius: 20px;
    background: #F9F9F9;
    padding: 24px;
    overflow-x: auto;
}

.roles-table-version {
    width: 100%;
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 20px;
}

.roles-order {
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

#content main table.roles-box-version {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

#content main table.roles-box-version th,
#content main table.roles-box-version td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ffffff; /* Dark gray border color */
    border-radius: 8px; /* Add border-radius for curved edges */
    background: #f6f6f6;
}

#content main table.roles-box-version th {
    background: #F9F9F9; /* Header background color */
    font-weight: 600;
}

#content main .privi-table-version > div {
    border-radius: 10px;
    /*background: var(--light);*/
    padding: 10px;
    /*overflow-x: auto;*/
}

.privi-table-version {
    width: 100%;
    margin: 10px 0;
    padding: 13px;
    background-color: #f8f8f8;
    border-radius: 10px;
}

#content main table.privi-box-version {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

#content main table.privi-box-version th,
#content main table.privi-box-version td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ffffff; /* Dark gray border color */
    border-radius: 8px; /* Add border-radius for curved edges */
    background: #f6f6f6;
}

/* SUCCESS BUTTON */
.btn.btn-success {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px; 
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #28a745;
    border-radius: 8px;
    color: #28a745;
    background-color: #ffffff;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn.btn-success:hover {
    background-color: #28a745;
    color: #ffffff;
    border-color: #28a745;
}

#content main .edit-form {
    margin-top: 40px;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 70%; /* Adjust width as needed */
}

.form-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.form-row {
    display: flex;
    align-items: center;
    /*margin-left: -29%;*/
}

.input-container {
    flex: 1;  
    margin-right: 10px; 
}

.feature-button {
    margin-top: -14px; /* Adjust top margin for spacing */
}

.feature-button a,
.feature-button button {
    margin-left: 3px; /* Add spacing between buttons */
}

.feature-button-img a,
.feature-button-img button {
    margin-top: 3px;
    margin-right: 3px; /* Adjust spacing between buttons */
}

.bg-content {
    flex: 1;
    margin-bottom: 15px; /* Adjust the margin as needed */
    margin-right: 1%;
}

.title-container {
    font-size: 25px; /* Adjust font size as needed */
    margin-bottom: 10px; /* Optional: Adjust margin to create spacing */
    color: #00a0e3;
}

.edit-text-danger {
    color: red;
    display: flex; /* Ensure the error message spans the full width */
    margin-top: 5px; /* Add margin for spacing */
}

.form-edit {
    margin-left: 20px;
    font-weight: bold;
    margin-bottom: 7px;
}

.modal-bg-para {
    margin-bottom: 10px; 
    font-weight: bold; 
    font-size: 18px;
}

.modal-title {
    margin-bottom: 10px;
}

.btn.btn-danger-edit {
    padding: 7px 10px; 
    cursor: pointer;
    border: 2px solid #dc3545;
    border-radius: 8px;
    color: #dc3545;
    background-color: #ffffff;
}

.btn.btn-danger-edit:hover {
    background-color: #dc3545;
    color: #ffffff;
    border-color: #dc3545;
}

.btn.btn-success-edit {
    padding: 7px 10px; 
    cursor: pointer;
    border: 2px solid #0aa338;
    border-radius: 8px;
    color: #0aa338;
    background-color: #ffffff;
}

.btn.btn-success-edit:hover {
    background-color: #0aa338;
    color: #ffffff;
    border-color: #0aa338;
}

.edit-button {
    margin-bottom: 12px; 
    margin-left: 10px;
}

.form-row-modal {
    display: flex;
    align-items: center;
    margin-left: 20px;
    width: 96%;
}   

.section-divider {
    border-top: 1px solid #f3f3f3; /* Gray line style */
    /*margin-top: 5px;  Adjust spacing as needed */
    margin-bottom: 20px; /* Adjust spacing as needed */
}

.edit-icon {
    display: none;    
    width : 25px; 
    height: 25px;
    cursor: pointer;
}

.btn.btn-warning {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px; 
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #AAAAAA;
    border-radius: 8px;
    color: #AAAAAA;
    background: #ffffff;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn.btn-warning:hover {
    background: #AAAAAA;
    color: #ffffff;
    border-color: #AAAAAA;
}

