body {
    min-height: 100vh;
    /* Ensure the body takes up the full viewport height */
    display: flex;
    flex-direction: column;
}

.navbar {
    background-color: #333;
    padding: 10px 0;
}

.navbar-list {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
}

.navbar-item {
    margin: 0 15px;
    position: relative;
}

.navbar-right {
    margin-left: auto;
}

.navbar-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.navbar-link:hover {
    text-decoration: underline;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    /* Align to the right */
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    min-width: 160px;
    padding: 10px 0;
    border-radius: 5px;
}

.dropdown-item {
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    display: block;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
}

.dropdown-divider {
    height: 1px;
    margin: 5px 0;
    overflow: hidden;
    background-color: #e9ecef;
}

.navbar-item:hover .dropdown-menu {
    display: block;
}

.header-contact {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.main-contact {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info,
.contact-form {
    margin-bottom: 20px;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 10px;
    color: #333;
}

.contact-info p {
    margin: 5px 0;
    color: #555;
}

form.form-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

form.form-contact label {
    font-weight: bold;
}

form.form-contact input,
form.form-contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
    /* Allow vertical resizing only */
}

form.form-contact button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    margin-top: 20px;
    /* Add space above the button */
}

form.form-contact button:hover {
    background-color: #555;
}

.header-terms {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.main-terms {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 20px;
}

.terms-section h2 {
    margin-bottom: 10px;
    color: #333;
}

.terms-section p {
    margin: 5px 0;
    color: #555;
}

.header-privacy {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.main-privacy {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 20px;
}

.privacy-section h2 {
    margin-bottom: 10px;
    color: #333;
}

.privacy-section p,
.privacy-section ul {
    margin: 5px 0;
    color: #555;
}

.privacy-section ul {
    padding-left: 20px;
}

.privacy-section ul li {
    margin-bottom: 5px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: relative;
    /* Changed to relative to avoid overlapping */
    bottom: 0;
    width: 100%;
    margin-top: auto;
    /* Push footer to the bottom if content is smaller */
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

footer p {
    margin: 0;
    font-size: 14px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
}

footer ul li {
    margin: 0 10px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

footer ul li a:hover {
    text-decoration: underline;
}

.header-login {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.main-login {
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.login-section {
    margin-bottom: 20px;
}

.login-section h2 {
    margin-bottom: 10px;
    color: #333;
}

form.form-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

form.form-login label {
    font-weight: bold;
}

form.form-login input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

form.form-login button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    margin-top: 20px;
    /* Add space above the button */
}

form.form-login button:hover {
    background-color: #555;
}

.flash-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.main-register {
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.register-form h1 {
    margin-bottom: 20px;
    color: #333;
}

.register-form label {
    font-weight: bold;
}

.register-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

.register-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    margin-top: 20px;
    /* Add space above the button */
    width: 100%;
    /* Make the button fill the width */
}

.register-form button:hover {
    background-color: #555;
}

.server-grid,
.container-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.server-tile,
.container-tile {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    /* Allow width to scale based on content */
    box-sizing: border-box;
    /* Ensure padding and border are included in the width */
    cursor: pointer;
    /* Indicate that the tile is clickable */
}

.server-tile:hover,
.container-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.server-tile h3,
.container-tile h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.5em;
}

.server-tile p,
.container-tile p {
    color: #555;
    margin: 10px 0;
    font-size: 1em;
}

.server-tile .server-actions,
.container-tile .container-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.server-tile .server-actions button,
.container-tile .container-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 1em;
}

.server-tile .server-actions button:hover,
.container-tile .container-actions button:hover {
    background-color: #555;
}

.container-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    /* Allow buttons to wrap to the next line if needed */
}

.container-actions form {
    margin: 0;
    /* Remove default margin from forms */
}

.action-primary {
    background-color: #007bff !important;
    color: #fff !important;
}

.action-primary:hover {
    background-color: #0056b3 !important;
}

.action-danger {
    background-color: #dc3545 !important;
    color: #fff !important;
}

.action-danger:hover {
    background-color: #c82333 !important;
}

.action-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.action-warning:hover {
    background-color: #e0a800 !important;
}

.action-success {
    background-color: #28a745 !important;
    color: #fff !important;
}

.action-success:hover {
    background-color: #218838 !important;
}

button:disabled,
.container-actions button:disabled {
    background-color: #ccc !important;
    color: #666 !important;
    cursor: not-allowed;
}

.server-tile .server-actions button:hover,
.container-tile .container-actions button:hover {
    background-color: #555;
}

.container-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    /* Allow buttons to wrap to the next line if needed */
}

.container-actions form {
    margin: 0;
    /* Remove default margin from forms */
}

.action-primary {
    background-color: #007bff !important;
    color: #fff !important;
}

.action-primary:hover {
    background-color: #0056b3 !important;
}

.action-danger {
    background-color: #dc3545 !important;
    color: #fff !important;
}

.action-danger:hover {
    background-color: #c82333 !important;
}

.action-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.action-warning:hover {
    background-color: #e0a800 !important;
}

.action-success {
    background-color: #28a745 !important;
    color: #fff !important;
}

.action-success:hover {
    background-color: #218838 !important;
}

button:disabled,
.container-actions button:disabled {
    background-color: #ccc !important;
    color: #666 !important;
    cursor: not-allowed;
}

.server-tile-background {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}

.server-tile-background:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.server-tile-background h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.5em;
}

.server-tile-background p {
    color: #555;
    margin: 10px 0;
    font-size: 1em;
}

.server-tile-background .server-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.server-tile-background .server-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 1em;
}

.server-tile-background .server-actions button:hover {
    background-color: #555;
}

.server-tile-background-online {
    background-color: #d4edda;
    /* Light green background */
    border-color: #c3e6cb;
    /* Green border */
}

.server-tile-background-online h3 {
    color: #155724;
    /* Dark green text */
}

.server-tile-background-online p {
    color: #155724;
    /* Dark green text */
}

.server-tile-background-offline {
    background-color: #f8d7da;
    /* Light red background */
    border-color: #f5c6cb;
    /* Red border */
}

.server-tile-background-offline h3 {
    color: #721c24;
    /* Dark red text */
}

.server-tile-background-offline p {
    color: #721c24;
    /* Dark red text */
}

.container-tile-background {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}

.container-tile-background:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.container-tile-background h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.5em;
}

.container-tile-background p {
    color: #555;
    margin: 10px 0;
    font-size: 1em;
}

.container-tile-background .container-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.container-tile-background .container-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 1em;
}

.container-tile-background .container-actions button:hover {
    background-color: #555;
}

.container-tile-background-online {
    background-color: #d4edda;
    /* Light green background */
    border-color: #c3e6cb;
    /* Green border */
}

.container-tile-background-online h3 {
    color: #155724;
    /* Dark green text */
}

.container-tile-background-online p {
    color: #155724;
    /* Dark green text */
}

.container-tile-background-offline {
    background-color: #f8d7da;
    /* Light red background */
    border-color: #f5c6cb;
    /* Red border */
}

.container-tile-background-offline h3 {
    color: #721c24;
    /* Dark red text */
}

.container-tile-background-offline p {
    color: #721c24;
    /* Dark red text */
}

.container-tile-background-notdeployed {
    background-color: #8385f8;
    /* Light blue background */
    border-color: #5758b6;
    /* Blue border */
}

.container-tile-background-notdeployed h3 {
    color: #5758b6;
    /* Blue Text */
}

.container-tile-background-notdeployed p {
    color: #5758b6;
    /* Blue Text */
}

.container-tile-background-locked {
    background-color: #6c757d;
    /* Dark gray background */
    border-color: #5a6268;
    /* Darker gray border */
}

.container-tile-background-locked h3 {
    color: #343a40;
    /* Even darker gray text */
}

.container-tile-background-locked p {
    color: #343a40;
    /* Even darker gray text */
}

.action-button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.action-primary {
    background-color: #007bff;
    color: #fff;
}

.action-primary:hover {
    background-color: #0056b3;
}

.action-danger {
    background-color: #dc3545;
    color: #fff;
}

.action-danger:hover {
    background-color: #c82333;
}

.action-warning {
    background-color: #ffc107;
    color: #212529;
}

.action-warning:hover {
    background-color: #e0a800;
}

.action-success {
    background-color: #28a745;
    color: #fff;
}

.action-success:hover {
    background-color: #218838;
}

button:disabled,
.action-button:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}

.styled-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.styled-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.styled-button:active {
    background-color: #003f7f;
    transform: scale(1);
}

.bind-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    /* Two equal columns for inputs and one for the button */
    gap: 10px;
    /* Add spacing between grid items */
    padding: 8px;
    /* Add padding for better spacing */
    background-color: #f9f9f9;
    /* Light background for better visibility */
    border: 1px solid #ccc;
    /* Match border style with environment variable rows */
    border-radius: 5px;
    /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Add subtle shadow for depth */
}

.bind-row input {
    padding: 10px;
    /* Match padding with environment variable inputs */
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
    /* Adjust font size for consistency */
}

.bind-row button {
    height: 100%;
    /* Match the height of the inputs */
    padding: 0 12px;
    /* Adjust padding for better alignment */
    border: none;
    border-radius: 5px;
    background-color: #dc3545;
    /* Red background */
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    /* Match font size with inputs */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.bind-row button:hover {
    background-color: #c82333;
    /* Darker red on hover */
    transform: scale(1.05);
    /* Slightly enlarge on hover */
}

.bind-row button:active {
    background-color: #a71d2a;
    /* Even darker red on click */
    transform: scale(1);
    /* Reset scale on click */
}

#container-binds-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Add spacing between bind rows */
    margin-top: 10px;
    /* Add spacing above the list */
}

#container-binds-list .bind-row button {
    height: 100%;
    /* Match the height of the inputs */
    padding: 0 12px;
    /* Adjust padding for better alignment */
    border: none;
    border-radius: 5px;
    background-color: #dc3545;
    /* Red background */
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    /* Match font size with inputs */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#container-binds-list .bind-row button:hover {
    background-color: #c82333;
    /* Darker red on hover */
    transform: scale(1.05);
    /* Slightly enlarge on hover */
}

#container-binds-list .bind-row button:active {
    background-color: #a71d2a;
    /* Even darker red on click */
    transform: scale(1);
    /* Reset scale on click */
}

.port-row,
.env-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    /* Two equal columns for inputs and one for the button */
    gap: 10px;
    /* Add spacing between grid items */
    padding: 8px;
    /* Add padding for better spacing */
    background-color: #f9f9f9;
    /* Light background for better visibility */
    border: 1px solid #ccc;
    /* Match border style with other rows */
    border-radius: 5px;
    /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Add subtle shadow for depth */
}

.port-row input,
.env-row input,
.bind-row input {
    padding: 10px;
    /* Match padding with other inputs */
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    height: 100%;
    /* Ensure inputs use the full height of the row */
    font-size: calc(0.5em + 0.5vh);
    /* Dynamically scale font size based on viewport height */
}

.port-row input,
.env-row input {
    padding: 10px;
    /* Match padding with other inputs */
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    height: 100%;
    /* Ensure inputs use the full height of the row */
    font-size: calc(0.5em + 0.5vh);
    /* Dynamically scale font size based on input height */
}

.port-row button,
.env-row button,
.bind-row button {
    padding: 0 12px;
    /* Adjust padding for better alignment */
    border: none;
    border-radius: 5px;
    background-color: #dc3545;
    /* Red background */
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    /* Match font size with inputs */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.port-row button:hover,
.env-row button:hover,
.bind-row button:hover {
    background-color: #c82333;
    /* Darker red on hover */
    transform: scale(1.05);
    /* Slightly enlarge on hover */
}

.port-row button:active,
.env-row button:active,
.bind-row button:active {
    background-color: #a71d2a;
    /* Even darker red on click */
    transform: scale(1);
    /* Reset scale on click */
}

.editor-section.collapsed #container-binds-list,
.editor-section.collapsed #add-bind-row {
    display: none;
    /* Hide the content inside the volumes list when collapsed */
}

@media (max-width: 768px) {
    footer {
        display: none;
    }
}

.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero .cta-button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #0056b3;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero .cta-button:hover {
    background-color: #003f8a;
}

.admin-navbar {
    position: relative;
}

.admin-navbar-toggle {
    display: none;
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    margin: 10px;
}

.admin-navbar-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .admin-navbar {
        background-color: #1a1a1a;
        padding: 15px;
        border-bottom: 2px solid #333;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .admin-navbar-toggle {
        display: block;
        background-color: #333;
        color: #fff;
        border: none;
        padding: 12px 20px;
        font-size: 18px;
        cursor: pointer;
        border-radius: 5px;
        width: 100%;
        text-align: left;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .admin-navbar-toggle:hover {
        background-color: #444;
        transform: scale(1.02);
    }

    .admin-navbar-toggle.dropdown-open {
        position: relative;
        z-index: 1000;
        background-color: #222;
        border-bottom: 1px solid #333;
        text-align: center;
    }

    .admin-navbar-list {
        display: none;
        flex-direction: column;
        background-color: #222;
        border-radius: 5px;
        margin-top: 0;
        /* Remove gap between toggle button and dropdown */
        padding: 0;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .admin-navbar-list.active {
        display: flex;
    }

    .admin-navbar-list.collapsed {
        display: none;
        /* Ensure it is hidden by default */
    }

    .admin-navbar-item {
        margin: 0;
        border-bottom: 1px solid #333;
    }

    .admin-navbar-item:last-child {
        border-bottom: none;
    }

    .admin-navbar-link {
        color: #fff;
        padding: 15px 20px;
        display: block;
        text-decoration: none;
        font-size: 16px;
        text-align: left;
        font-weight: 500;
        transition: background-color 0.3s ease, padding-left 0.3s ease;
    }

    .admin-navbar-link:hover {
        background-color: #444;
        padding-left: 25px;
        /* Add a slight animation effect */
    }
}

.text-icon-line {
    display: flex;
    align-items: center;
}

.button-imgage-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px; /* Space between icon and text */
}

.btn {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-left: 5px; /* Space between buttons */
    display: inline-block; /* Ensure buttons are inline-block for spacing */
}

.btn-danger {
    background-color: #dc3545; /* Red background */
    color: #fff; /* White text */
}

.btn-danger:hover {
    background-color: #a71d2a; /* Darker red on hover */
}

.btn-primary {
    background-color: #007bff; /* Blue background */
    color: #fff; /* White text */
}

.btn-primary:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.btn-warning {
    background-color: #ffc107; /* Yellow background */
    color: #212529; /* Dark text */
}

.btn-warning:hover {
    background-color: #e0a800; /* Darker yellow on hover */
}

.btn-success {
    background-color: #28a745; /* Green background */
    color: #fff; /* White text */
}

.btn-success:hover {
    background-color: #1e7e34; /* Darker green on hover */
}

.btn-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px; /* Space between icon and text */
}

.btn-icon {
    width: 20px; /* Adjust icon size as needed */
    height: 20px; /* Adjust icon size as needed */
    vertical-align: middle; /* Align icon with text vertically */
}

.btn-icon-text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px; /* Space between icon and text */
    font-size: 14px; /* Adjust font size as needed */
    font-style: bold;
}

form.form-password-reset {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-password-reset .form-label {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.form-password-reset .form-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-password-reset .form-input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.form-password-reset .btn-primary {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-password-reset .btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.form-password-reset .flash-error,
.form-password-reset .flash-success {
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}

.form-password-reset .flash-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-password-reset .flash-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.text-red-shadow {
    color: #f50018 !important;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5) !important;
    /* Red text color */
}

.text-red {
    color: #f50018 !important;
    /* Red text color */
}

.text-bold {
    font-weight: bold;
    /* Bold text */
}

.table-scrollable-footer {
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.table-scrollable-footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.table-scrollable-footer-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination-button {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.pagination-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.pagination-info {
    font-size: 14px;
    color: #555;
}