/* style.css */

/* —————————————————————— */
/* CSS Custom Properties    */
/* —————————————————————— */
:root {
    --primary-color: #004a66;
    /* was #004a66, unchanged */
    --secondary-color: #004a66;
    /* changed from #007095 */
    --light-color: #ddd;
    --card-radius: 15px;
    --transition-speed: 0.3s;
    --text-color: #2b2d42;
    --light-gray: #e9ecef;
    --error-bg: #fee2e2;
    --error-text: #b91c1c;
    --border-radius: 10px;
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: #f5f5f5;
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    width: 220px;
    padding-top: 20px;
    position: fixed;
    height: 100%;
    transition: var(--transition);
}

.sidebar a {
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    border-left: 4px solid transparent;
    transition: var(--transition);
}

.sidebar a:hover {
    background-color: var(--secondary-color);
    border-left-color: #fff;
}

.sidebar a i {
    margin-right: 10px;
    font-size: 18px;
}

/* Main area */
.main {
    margin-left: 220px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.topbar {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* Cards grid */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 20px;
}

.card {
    background-color: #fff;
    padding: 25px;
    border-radius: var(--card-radius);
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
}

.card.blue {
    background-color: var(--primary-color);
    color: #fff;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.card .value {
    font-size: 24px;
    font-weight: bold;
}

/* Recharge */
.recharge-section {
    background-color: #fff;
    border-radius: var(--card-radius);
    margin: 20px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.recharge-section h2 {
    margin-bottom: 25px;
    color: var(--primary-color);
}

.recharge-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.recharge-card {
    padding: 20px;
    border-radius: var(--card-radius);
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
}

.recharge-card.blue-card {
    background-color: var(--primary-color);
    color: #fff;
}

.recharge-card.grey-card {
    background-color: var(--light-gray);
}

.recharge-card:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .sidebar {
        left: -220px;
        position: fixed;
    }

    .sidebar.active {
        left: 0;
    }

    .main {
        margin-left: 0;
    }

    .cards,
    .recharge-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .cards,
    .recharge-cards {
        grid-template-columns: 1fr;
    }

    .topbar {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* ———————————————————————————————— */
/* Vehicle Details Page */
.vehicle-section {
    padding: 1.5rem;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.content-header h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.btn.add-new {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.btn.add-new i {
    margin-right: 0.5rem;
}

.vehicle-table {
    width: 100%;
    border-collapse: collapse;
}

.vehicle-table th,
.vehicle-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--light-gray);
    text-align: left;
}

.vehicle-table thead th {
    background-color: var(--primary-color);
    color: #fff;
}

.vehicle-table tbody tr:hover {
    background-color: var(--light-gray);
}

.actions .btn-edit,
.actions .btn-delete {
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.875rem;
}

.actions .btn-edit {
    background-color: #ffc107;
    color: #212529;
    margin-right: 0.5rem;
}

.actions .btn-delete {
    background-color: #dc3545;
    color: #fff;
}


.btn-download {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-decoration: none;
}

.btn-upload {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;

}


/* “Check Avail” button */
.btn-check {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.35rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity var(--transition-speed);
}

.btn-check:hover {
    opacity: 0.85;
}


/* Map QR page button styles */
.vehicle-section .btn.add-new {
    margin-left: auto;
}

/* Actions column buttons */
.actions .btn-edit,
.actions .btn-update {
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.actions .btn-edit {
    background-color: #ffc107;
    color: #212529;
}

.actions .btn-update {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Space buttons in header */
.content-header .btn-group {
    margin-left: auto;
    display: flex;
}

.content-header .btn-group .btn {
    margin-left: 0.5rem;
}

/* Reuse .btn-edit and .btn-update styles */
/* If needed, you can customize: */
.btn-update {
    background-color: var(--secondary-color);
    color: #fff;
}


/* Adjust header button alignment */
.vehicle-section .content-header .btn.add-new {
    margin-left: auto;
}

/* Align the add-new button */
.vehicle-section .content-header .btn.add-new {
    margin-left: auto;
}

/* pagination controls */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

.pagination .btn {
    margin: 0 0.5rem;
}

.pagination span {
    font-weight: 500;
}

/* header-controls: search + button */
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Search bar styling */
.search-container {
    position: relative;
}

/* make space on the right for the button */

.search-input {
    padding: 0.5rem 2.5rem 0.5rem 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.search-input {
    padding-right: 2.5rem;
}

/* style the icon button */
.search-btn {
    position: absolute;
    top: 50%;
    right: 0.25rem;
    transform: translateY(-50%);
    border: none;
    background: none;
    padding: 0.25rem;
    cursor: pointer;
    color: var(--light-gray);
    font-size: 1.1rem;
}

/* hover/focus states */
.search-btn:hover,
.search-btn:focus {
    color: var(--primary-color);
    outline: none;
}



.search-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-gray);
    pointer-events: none;
}

/* Responsive: shrink search on very small screens */
@media (max-width: 576px) {
    .search-input {
        width: 100px;
    }
}


/* header-controls: search + buttons */
.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Search bar */
.search-container {
    position: relative;
}

.search-input {
    padding: 0.5rem 2.5rem 0.5rem 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.search-btn {
    position: absolute;
    top: 50%;
    right: 0.25rem;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
    color: var(--light-gray);
    font-size: 1.1rem;
}

.search-btn:hover,
.search-btn:focus {
    color: var(--primary-color);
}

/* Pagination styling */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
    gap: 1rem;
}

.pagination .btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.pagination .btn:hover:not(:disabled) {
    opacity: 0.85;
}

.pagination .btn:disabled {
    background-color: var(--light-gray);
    color: #777;
    cursor: not-allowed;
}

.pagination #pageInfo {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}


/* ---- Fetch UI ---- */
.fetch-section {
    width: 80%;
    margin: 2rem auto;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.fetch-header {
    background: #004a66;
    color: #fff;
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.fetch-header i {
    margin-right: 0.5rem;
}

.fetch-body {
    padding: 1rem;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}



.radio-group label {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-container {
    margin-top: 0.5rem;
}

.input-container .input-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.fetch-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
}

.fetch-footer {
    background: #ffe6f0;
    padding: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.fetch-footer .btn {
    background: #004a66;
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    cursor: pointer;
    transition: opacity var(--transition-speed);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fetch-footer .btn-search:hover {
    opacity: 0.85;
}

.fetch-footer .btn-clear {
    background: #c62828;
}

.fetch-footer .btn-clear:hover {
    opacity: 0.85;
}

/* ---- Result section ---- */
.result-section {
    padding: 1rem;
}

.result-heading {
    margin-bottom: 0.75rem;
    color: #004a66;
    font-size: 1.2rem;
}

.result-table {
    width: 100%;
    border-collapse: collapse;
}

.result-table th,
.result-table td {
    border: 1px solid #ddd;
    padding: 0.5rem;
    text-align: center;
}

.result-table th {
    background: #f0f0f0;
}


/* ================================
  Form CSS
   ================================ */
.form-section {
    padding: 30px 20px;
}

.form-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-container {
    max-width: 600px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    appearance: none;
    background-color: #fff;
}

.form-group select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2212%22%20height%3D%227%22%20viewBox%3D%220%200%2012%207%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M6%207L0%200h12L6%207z%22%20fill%3D%22%23777%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px 7px;
}

.submit-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.check-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    margin-top: 20px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.submit-btn:hover {
    opacity: 0.85;
}

.error-message {
    color: #b91c1c;
    font-size: 0.85rem;
    height: 1rem;
    margin-top: 4px;
    display: block;
}


/* Bulk Upload Controls */
.bulk-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.sample-download span {
    margin-right: 1rem;
    font-weight: 500;
}

.download-btn,
.upload-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.download-btn:hover,
.upload-btn:hover {
    opacity: 0.85;
}

.file-upload input[type="file"] {
    border: 1px dashed var(--light-gray);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
}

/* Table styling already in `.vehicle-table` */
.bulk-footer {
    margin-top: 1rem;
    text-align: right;
}

.bulk-footer .submit-btn {
    background-color: var(--secondary-color);
}

.bulk-footer .submit-btn:hover {
    opacity: 0.85;
}




/* --- Table & Layout --- */
.vehicle-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.vehicle-table th,
.vehicle-table td {
    border: 1px solid #ccc;
    padding: 0.5rem;
    text-align: left;
}

tr.invalid {
    background-color: #ffe5e5;
    /* highlight rows with missing data */
}



.btn:disabled {
    background-color: #999;
    cursor: not-allowed;
}

/* Pagination controls */
.pagination-controls {
    margin-top: 1rem;
    text-align: center;
}

.pagination-controls #pageInfo {
    margin: 0 1rem;
    font-weight: bold;
}

/* Responsive “stacked” table on narrow screens */
@media (max-width: 600px) {

    .vehicle-table,
    .vehicle-table thead,
    .vehicle-table tbody,
    .vehicle-table th,
    .vehicle-table td,
    .vehicle-table tr {
        display: block;
    }

    .vehicle-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .vehicle-table td {
        position: relative;
        padding-left: 50%;
    }

    .vehicle-table td:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 45%;
        padding-left: 0.5rem;
        white-space: nowrap;
        font-weight: bold;
    }

    .vehicle-table td:nth-of-type(1):before {
        content: "SL No.";
    }

    .vehicle-table td:nth-of-type(2):before {
        content: "QRID";
    }

    .vehicle-table td:nth-of-type(3):before {
        content: "QR No";
    }

    .vehicle-table td:nth-of-type(4):before {
        content: "Availably";
    }

    .vehicle-table td:nth-of-type(5):before {
        content: "Status";
    }
}


.file-upload input[type="file"] {
    border: 1px dashed var(--light-gray);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
}



/* Full‐screen BG */
/* ———————————————————————————————— */
.login-bg {
    width: 100%;
    min-height: 100vh;
    background: url('/asset/img/bgimg.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* ———————————————————————————————— */
/* Centering Wrapper */
/* ———————————————————————————————— */
.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1rem;
    box-sizing: border-box;
}

/* ———————————————————————————————— */
/* Card Styling */
/* ———————————————————————————————— */
.login-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 380px;
    text-align: center;
}

/* ———————————————————————————————— */
/* Title + Error */
/* ———————————————————————————————— */
.login-title {
    font-size: 1.5rem;
    color: #004a66;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-error {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fee2e2;
    color: #b91c1c;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* ———————————————————————————————— */
/* Form Inputs */
/* ———————————————————————————————— */
.login-form .form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.login-form label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: #333;
}

.login-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 6px;
    background-color: #e0e8f5;
    font-size: 1rem;
    color: #004a66;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.login-form input:focus {
    outline: none;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ———————————————————————————————— */
/* Submit Button */
/* ———————————————————————————————— */


.submit-btn:hover {
    background-color: #00334d;
}

/* ———————————————————————————————— */
/* Footer Link */
/* ———————————————————————————————— */
.login-footer {
    margin-top: 1.5rem;
}

.login-footer a {
    color: #004a66;
    text-decoration: none;
    font-size: 0.9rem;
}

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


/* ————— Override generic “all inputs” styling for checkboxes ————— */
.form-container input[type="checkbox"] {
    /* restore natural dimensions */
    width: auto;
    height: auto;
    /* restore native styling */
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    /* space between box and label text */
    margin-right: 0.5rem;
    cursor: pointer;
}

/* ————— Stack the “Access” options vertically ————— */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /* space between each checkbox row */
    margin-top: 0.5rem;
}

/* ————— Align label text nicely beside the box ————— */
.checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    user-select: none;
    cursor: pointer;
}



/* ————— Reset radios back to native size & appearance ————— */
.form-group input[type="radio"] {
    width: auto;
    height: auto;
    padding: 0;
    margin-right: 0.5rem;
    /* space between dot & label text */
    border: none;
    appearance: radio;
    /* restore native */
    -webkit-appearance: radio;
    /* Safari/Chrome */
    -moz-appearance: radio;
    /* Firefox */
    cursor: pointer;
}

/* ————— Layout for your two options ————— */
.radio-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* make sure label wraps both dot & text */
.radio-group label {
    display: flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
}




/* —— Hide default and style the actual radio —— */
.radio-group input[type="radio"] {
    /* modern browsers support accent-color */
    accent-color: #007bff;
    /* primary brand color */
    width: 1.1em;
    height: 1.1em;
    margin-right: 0.4em;
    /* space between dot and label text */
    cursor: pointer;
}

/* —— Hover state for label (optional) —— */
.radio-group label:hover input[type="radio"] {
    opacity: 0.85;
}

/* —— Disabled state —— */
.radio-group input[type="radio"]:disabled+span,
.radio-group input[type="radio"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Remove underline on all anchors */
a {
    text-decoration: none;
}

/* Also remove any text-dec on your “.btn” buttons */
.btn {
    text-decoration: none;
}

/* And keep it gone on hover/focus */
a:hover,
a:focus,
.btn:hover,
.btn:focus {
    text-decoration: none;
}

/* Base styling for all alerts */
.alert {
    padding: 0.75rem 1.25rem;
    margin: 1rem 0;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
}

/* Success variant */
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

/* Error variant */
.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.form-container textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
    /* Ensures it uses the same font as other inputs */
    box-sizing: border-box;
    /* Prevents padding and border from adding to the width */
    resize: vertical;
    /* Optional: Allows user to resize height but not width */
}

/* ================================== */
/* == Dealer Dashboard Styles      == */
/* ================================== */

/* This styles the main content area */
.dashboard-content {
    padding: 2rem;
    background-color: #f4f7f6; /* A light, neutral background */
    flex-grow: 1;
    height: 100%;
}

/* The main welcome box */
.welcome-banner {
    background-color: #ffffff; /* White card */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Soft shadow */
    border: 1px solid #e2e8f0; /* Light border */
    padding: 3rem 2rem; /* More vertical padding */
    text-align: center; /* Center all text */
    max-width: 800px; /* Limit width */
    margin: 3rem auto; /* Center the box on the page */
}

/* "Welcome, [Dealer Name]" */
.welcome-title {
    font-size: 2.25rem; /* 36px */
    font-weight: 700;
    color: #1a202c; /* Dark text */
    margin-bottom: 0.5rem;
}

/* "You are logged into..." */
.welcome-subtitle {
    font-size: 1.125rem; /* 18px */
    font-weight: 300;
    color: #4a5568; /* Medium-dark text */
    margin-bottom: 1.5rem;
}

/* "You can manage..." */
.welcome-info {
    font-size: 1rem; /* 16px */
    color: #718096; /* Lighter text */
    line-height: 1.6;
    max-width: 600px; /* Make this text a bit narrower */
}