﻿.main-content {
    margin-top: 10px;
    margin-left: 0px;
    padding: 10px;
}

.form-container {
    background-color: #242134;
    padding: 10px;
    border-radius: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

    .form-container h2 {
        margin-top: 0;
    }

.form-group {
    margin-bottom: 5px;
}

    .form-group label {
        display: block;
        margin-bottom: 4px;
    }

    .form-group input, .form-group select {
        width: 100%;
        padding: 8px;
        box-sizing: border-box;
        background-color: rgb(70, 77, 86);
        border: 2px solid #8a8a8a;
        color: white;
    }

    .form-group .radio-group {
        display: flex;
        align-items: center;
    }

        .form-group .radio-group input {
            margin-right: 5px;
        }

        .form-group .radio-group label {
            margin-right: 15px;
        }

.form-actions {
    display: flex;
    justify-content: flex-end;
}

body {
    font-family: Arial, sans-serif;
    background-color: #23262e;
    margin-top: 0;
    padding: 0px;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    border-collapse: collapse;
    background-color: #23262e;
    color: #fff;
    padding: 20px;
}

.form-group {
    display: block;
    justify-content: space-between;
    margin-bottom: 10px;
}

    .form-group div {
        width: 48%;
    }


    .form-group input, .form-group select {
        width: 100%;
        padding: 8px;
        border: none;
        border-radius: 4px;
    }

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.button-group {
    display: flex;
    justify-content: flex-end;
    margin: 10px 20px;
}

    .button-group button {
        padding: 10px 40px;
        border: none;
        border-radius: 4px;
    }

.view-button {
    background-color: #28a745;
    color: white;
    margin-right: 10px;
}

.print-button {
    background-color: #664caf;
    color: white;
}
/* Dropdown positioning */
.menu-container {
    position: relative;
}

.menu {
    position: absolute;
    /* bottom: 50px; */ /* Position the menu above the icon */
    /* left: 50%; */ /* Center align to the button */
    transform: translateX(-50%); /* Ensure it's centered */
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1050; /* Ensure it's above other elements */
    min-width: 150px;
    display: none; /* Hidden by default */
}

    /* Dropdown menu items */
    .menu a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: #333;
        font-size: 14px;
        transition: background-color 0.3s ease;
        position: revert;
    }

a.dropdown-item {
}

poi {
}

.menu a:hover {
    background-color: #4468b5;
}

/* Show menu when active */
.menu-container.active .menu {
    display: block;
}

/* Styling the dots button */
.dots-button {
    width: 40px;
    height: 40px;
    background-color: black; /* Button color */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.dots {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 6px;
    height: 16px;
}

    .dots span {
        display: block;
        width: 6px;
        height: 6px;
        background-color: white; /* Dot color */
        border-radius: 50%;
    }
.btn-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 20px;
    text-align: center;
    line-height: 30px;
    vertical-align: middle;
}



.page-header-shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tab {
    background-color: #ffffff;
    border-radius: 10px;
}

.form-control, .form-select {
    font-size: 14px;
    padding: 10px 12px;
}

.btn {
    font-size: 14px;
    padding: 8px 16px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #ffffff;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: #0056b3;
        border-color: #0056b3;
    }

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #ffffff;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #ffffff;
}

.form-control::placeholder, .form-select::placeholder {
    font-style: italic;
    color: #999;
}
.x_title {
    background-color: #ffffff; /* Light background */
    border: 1px solid #ddd; /* Subtle border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

    /* Header text styling */
    .x_title h2 {
        color: #0056b3; /* Professional blue tone */
        font-weight: bold;
        margin: 0;
    }

    /* Breadcrumb or text in the top-right */
    .x_title .text-end {
        font-size: 14px;
        color: #666; /* Subtle gray for less emphasis */
    }

    /* Add spacing between elements for better clarity */
    .x_title .row {
        align-items: center;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .x_title h2 {
        font-size: 20px; /* Adjust header font size for smaller screens */
    }
    .menu {
        position: absolute;
        /* bottom: 50px; */ /* Position the menu above the icon */
        transform: translateX(-50%); /* Ensure it's centered */
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
        z-index: 1050; /* Ensure it's above other elements */
        min-width: 150px;
        display: none; /* Hidden by default */
    }
    .menu-container.active .menu {
        display: block;
        right: 0;
    }

}
/* Loader container */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it overlays everything */
    visibility: hidden; /* Hidden by default */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

    /* Show loader */
    .loader-container.show {
        visibility: visible;
        opacity: 1;
    }

/* Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 6px solid #f3f3f3; /* Light grey */
    border-top: 6px solid #3498db; /* Blue */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.modal{
    color:black;
}
.password-container {
    position: relative;
    display: inline-block;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
}

    .toggle-password:hover {
        color: #333;
    }
.toggle-copy {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
}

    .toggle-copy:hover {
        color: #333;
    }
.input-group-addon {
    display: flex; /* Align items horizontally */
    align-items: center; /* Vertically center the icon */
    padding: 0 10px; /* Optional: Adjust padding around the icon */
    background: #f8f9fa; /* Optional: Background color to match design */
    border: 1px solid #ced4da; /* Optional: Match input border */
    border-left: none; /* Remove left border to blend with input */
    cursor: pointer;
}

    .input-group-addon .fa-calendar {
        font-size: 16px; /* Adjust icon size to match input text size */
        color: #495057; /* Optional: Match input text color */
    }
.table-scrollable {
    position: relative;
    max-height: 60vh; /* Fixed max height for scrolling */
    min-height: auto; /* Adjust dynamically based on content */
    overflow-y: auto;
}

    .table-scrollable tbody tr:last-child {
        border-bottom: none; /* Avoid border showing for empty space */
    }

    .table-scrollable table {
        width: 100%;
        border-collapse: collapse;
    }

    .table-scrollable thead {
        position: sticky;
        top: 0;
        z-index: 1;
        background-color: white; /* Ensure a visible background for the header */
    }

    .table-scrollable th, .table-scrollable td {
        text-align: left;
        padding: 8px;
        border: 1px solid #ddd;
    }

    .table-scrollable th {
        background-color: #f4f4f4; /* Header background color */
        font-weight: bold;
    }
.paginationControl .page-info {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
}

.paginationControl .navigation-arrows a {
    margin: 0 5px;
    font-size: 16px;
    cursor: pointer;
}

.anchor-pointer.disabled {
    pointer-events: none;
    color: gray;
    cursor: default;
}
.paginationControl .navigation-arrows i {
    font-size: 20px; /* Adjust size as needed */
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.paginationControl .navigation-arrows a {
    margin: 0 8px; /* Space between arrows */
    color: #007bff; /* Optional: customize arrow color */
    text-decoration: none;
}

    .paginationControl .navigation-arrows a.disabled {
        color: gray; /* Gray out disabled arrows */
        pointer-events: none; /* Prevent clicks */
    }
.toast-center-screen {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    position: fixed !important;
}
.btn-disabled {
    background-color: #ccc !important; /* Gray out */
    color: #666 !important; /* Dim text */
    cursor: not-allowed !important; /* Show 'not-allowed' cursor */
    opacity: 0.6; /* Reduce opacity */
    box-shadow: none; /* Remove shadow */
}
.readonly-input {
    background-color: #e9ecef !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
}

