﻿/* ================================================
       Global Reset & Base Styles
    ================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Override the sidebar layout's body styles for dashboard */
.sidebar-content-body {
    padding: 0;
    height: 100vh;
    display: grid;
    grid-template-columns: minmax(250px, 400px) minmax(0, 2fr) minmax(250px, 1fr);
    background-color: #0a0f11;
}

/* Hide the sidebar layout header for dashboard */
.sidebar-content-header {
    display: none;
}

/* Reset body styles when in dashboard */
/* body {
    font-family: Arial, sans-serif;
    background-color: #0a0f11;
    color: #fff;
} */

/* Hide main content during loading */
/* body.loading .sidebar,
body.loading .list-container,
body.loading .main-container,
body.loading .side-container {
    opacity: 0;
    visibility: hidden;
} */

.hidden {
    display: none;
}

/* ================================================
       Import
    ================================================== */

.import-section{
    background:#212121;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    border: 2px dashed #333;
    font-size:0.85rem;

}


.import-form {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.import-label {
    font-weight: bold;
}

.upload-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .upload-btn:hover {
        background: #0056b3;
    }

.progress-container {
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
    .progress-container p {
        text-align: center;
        margin-bottom: 10px;
    }

.progress-bar {
    width: 100%;
    background-color: #333;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress {
    width: 0;
    height: 1rem;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.result-text {
    margin-top: 1rem;
    color: #28a745;
    font-weight: bold;
    text-align: center;
}

.done-btn {
    width: 100%;
    background: #28a745;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

    .done-btn:hover {
        background: #218838;
    }

/* ================================================
       Sidebar - COMMENTED OUT
    ================================================== */
/* .sidebar {
    background: #111E26;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
    height: 100vh;
}

    .sidebar .top-buttons,
    .sidebar .bottom-buttons {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .sidebar .bottom-buttons {
        margin-top: auto;
        margin-bottom: 10px;
    }

        .sidebar .bottom-buttons img {
            width: 100%;
            height: auto;
            display: block;
        }

    .sidebar .logo {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
        .sidebar .logo img {
            width: 80%;
            height: auto;
            display: block;
        }

    .sidebar .button {
        width: 30px;
        height: 30px;
        border-radius: 50%;
    } */


/* ================================================
       List Container & Contact List
    ================================================== */
.list-container {
    display: flex;
    flex-direction: column;
    min-width: 250px;
    max-width: 400px;
/*    border: 1px dashed #333;*/
    background: #0d1117;
    padding: 10px;
    overflow-y: auto;
}

    .list-container header {
        background: #0d1117;
        display: flex;
        align-items: center;
        padding: 0px;
        margin-bottom:20px;
    }

.search-box {
    display: flex;
    align-items: center;
    background: #0B171C;
    border-radius: 12px;
    padding: 18px 15px;
    width: 100%;
}

    .search-box input {
        border: none;
        background: none;
        color: #fff;
        outline: none;
        width: calc(100% - 20px);
        padding-left: 10px;
        font-size: 0.9rem;
    }

    .search-box img {
        width: 16px;
        height: 16px;
    }

.clear-search-btn {
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: none; /* Hidden by default */
}

    .clear-search-btn:hover {
        color: #333;
    }

.contact-list {
    list-style: none;
    padding-left: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    background: #0B171C;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
    height: 90px;
}

    .contact-item.pending {
        background: #1b191d;
        height: 65px;
    }
    .contact-item.processing {
        background: #302839;
        border-left: 4px solid #5b7484;
        height: 65px;
    }
    .contact-item.failed {
        background: #1b191d;
        border-left: 1px solid #ff0000;
        height: 65px;
    }
    .contact-item.success {
        background: #1b191d;
        border-left: 0px solid #000;
        height: 65px;
    }
    .contact-item.skipped {
        background: #3d3a40;
        border-left: 1px solid #8a8a8a;
        height: 65px;
    }
    .contact-item img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 10px;
        object-fit: cover;
    }

.contact-details {
    flex-grow: 1;
}

.contact-name {
    font-weight: bold;
}

.contact-message {
    font-size: 0.9em;
    color: #bbb;
    margin-right: 25px;
}

.timestamp {
    font-size: 0.8em;
    color: #888;
    position: absolute;
    top: 10px;
    right: 10px;
}

.badge {
    background: #f1c40f;
    color: #000;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.8em;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.status {
    font-size: 0.75rem;
    color: #777;
}

.connection-status {
    position: absolute;
    top: 34px;
    right: 0px;
}

.connection-status img{
    width: 20px;
    height: auto;
}
.selected-contact {
    background-color: #142834;
    /*    border-left: 6px solid #007bff;*/
}
/* ================================================
       Main Container & Expander Section
    ================================================== */
.main-container {
    display: flex;
    flex-direction: column;
    background: #0a0f11;
    padding: 10px 0px;
    position: relative;
}

.expander {
    background: #142834;
    padding: 10px;
    margin-right: 0px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    z-index: 1;
}
    .expander img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 10px;
        object-fit: cover;
    }

    .expander .expander-icon {
        width: 20px;
        height: auto;
        margin-left: auto; /* Push the icon to the right */
        transition: transform 0.0s ease; /* Smooth transition for rotation */
    }

        .expander .expander-icon.rotated {
            transform: rotate(180deg); /* Rotate the icon 180 degrees */
        }

.expander-content {
    display: none;
    background: #0d1117;
    position: absolute;
    padding-top: 10px;
    top: 70px;
    left: 10px;
    right: 0px;
    z-index: 2;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.6);
}

.expander.open + .expander-content {
    display: block;
}

/* --- Profile & Company Cards --- */
.profile-card,
.company-card,
.files-container {
    background: #142834;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.action-section {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    text-align:center;
    margin-top:15px;
}

.profile-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .profile-card img {
        width: 85px;
        height: 85px;
        border-radius: 50%;
        object-fit: cover;
    }

.profile-info {
    flex-grow: 1;
    padding-left: 10px;
}

    .profile-info h2 {
        margin: 0;
    }

    .profile-info p {
        margin: 5px 0;
        color: #88c0d0;
    }

.social-icons {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap into multiple rows */
    gap: 8px; /* Space between items */
    max-width: 200px; /* Set maximum width */
}

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px; /* Fixed width for each icon */
        height: 40px; /* Fixed height for each icon */
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        background: #0B171C;
        border-radius: 8px;
        padding:4px;
    }

    .social-icons img {
        width: 75%; /* Ensure the image fills the container */
        height: 75%; /* Ensure the image fills the container */
        object-fit: contain; /* Maintain aspect ratio */
        border-radius: 0px;
    }

/* --- Notes --- */
.notes-container {
    background: #2A2F36;
    display: flex;
    gap: 10px;
    padding: 0px 10px;
    border-radius: 10px;
}

.note-box {
    flex: 1;
    background: #0B171C;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* --- Contact Tags --- */
.tags-container {
    margin-top: 15px;
}

.contact-tag {
    display: inline-block;
    background: #5BC1EA;
    color: #ffffff;
    padding: 4px 10px;
    margin: 2px 4px 2px 0;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    white-space: nowrap;
}

.contact-tag:hover {
    background: #4AA8D3;
}

/* --- Files --- */
.files-container ul {
    list-style: none;
    padding: 0;
}

.files-container li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

/* --- Connect Button --- */
.action-section button {
    width: auto;
    padding: 10px 20px;
    background: #EDA642;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
}

/* ================================================
       Chat Content & Footer
    ================================================== */
.chat-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 45px;
    padding: 20px;
    overflow-y: auto;
    height: calc(100vh - 100px);
    padding-bottom: 120px;
    background: #0B161C;
    margin-left: 10px;
    margin-top: 10px;
    border-radius: 12px;
}

.footer {
    background: #0B161C;
    display: flex;
    padding: 0px 10px 10px 10px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
/*    align-items: flex-start;*/
    border-radius: 12px;
}

.input-container {
    background: #101f28;
    border-radius: 8px;
    padding: 15px;
    bottom: 20px;
    left: 20px;
    right: 20px;

    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
}

.input-box {
    font-family: Arial, sans-serif;
    flex-grow: 1;
    background: #101f28;
    border-radius: 10px;
    padding: 10px;
    font-size: 0.9rem;
    color: #fff;
    resize: none;
    border: none;
    outline: none;
    min-height: 40px;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 10px;
    border: 1px solid #244B5F;
}

.send-button {
    background: #5BC1EA;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    align-self: flex-end;
}

    .send-button:hover {
        background: #497d3c;
    }

    .send-button:disabled {
        background: #666;
        cursor: not-allowed;
        opacity: 0.7;
    }

    .sending-spinner {
        display: inline-block;
        width: 16px;
        height: 16px;
        border: 2px solid #ffffff40;
        border-top: 2px solid #ffffff;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-right: 5px;
        vertical-align: middle;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

/* ================================================
       Side Container (News)
    ================================================== */
.side-container {
    display: flex;
    flex-direction: column;
/*    border: 2px dashed #333;*/
    background: #0d1117;
    padding: 10px;
    padding-top: 0px;
    min-width: 250px;
    overflow-y: auto;
    gap:20px;
}

.side-header {
    background: #0a0f11;
    padding: 25px 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.news-list {
    list-style: none;
    padding: 0;
}

.news-item {
    background: #242B2F;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

    .news-item a {
        text-decoration: none; /* Removes underline */
        color: inherit; /* Inherits text color from parent */
        display: block; /* Ensures the link covers the entire list item */
    }


    .news-item img {
        width: 100%;
        height: auto;
        display: block;
    }

.news-content {
    padding: 10px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8em;
    color: #bbb;
    margin-bottom: 5px;
}

.news-title {
    font-weight: bold;
    font-size: 0.9em;
}

/* ================================================
       Chat
    ================================================== */

.chat-message {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 70%;
    position: relative; /* Add this to position the timestamp relative to the message */
}

    .chat-message.user {
        align-self: flex-end;
        flex-direction: row-reverse;
    }

    .chat-message.recipient {
        align-self: flex-start;
    }

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.message-content {
    background: linear-gradient(to right, #5C5E60, #242B2F);
    padding: 12px 15px;
    border-radius: 10px;
    color: #fff;
    max-width: 100%;
    min-width:30px;
    position: relative; /* Add this to ensure the timestamp is positioned correctly */
}

.chat-message.user .message-content {
    background: linear-gradient(to right, #172E3B, #2C5A6A);
}

.message-text {
    margin: 0;
}

.message-content a {
    color: #4FC3F7; /* Light blue color for links */
    text-decoration: underline; /* Underline to indicate it's a link */
/*    font-weight: bold;*/
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.chat-timestamp {
    display: block;
    font-size: 12px;
    color: #bbb;
    text-align: right;
    position: absolute; /* Position the timestamp absolutely */
    bottom: -20px; /* Move it outside the bubble */
    white-space: nowrap; /* Prevent the timestamp from wrapping */
}

    .chat-timestamp.recipient {
        left: 50px; /* Add more margin to the left to align with message-content */
    }
    .chat-timestamp.user {
        right: 50px; /* Add more margin to the right to align with message-content */
    }

    .chat-timestamp img {
        width: auto; /* Set width for the delivered image */
        height: 12px; /* Set height for the delivered image */
        margin-left: 4px; /* Add some spacing between the time and the image */
    }

/* ================================================
       Special Messages
    ================================================== */
.special-message {
    max-width: 80% !important;
}

.special-message .message-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: none;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.special-message.user .message-content {
    background: linear-gradient(135deg, #1f1f1f 0%, #333333 100%);
    border: none;
}

.special-message-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-title {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}


.offer-details {
    padding: 24px;
}

.meeting-details {
    padding: 24px;
}

.action-details {
    padding: 24px;
}

.offer-description {
    color: #fff;
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.4;
}

.plan-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.plan-name {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.plan-price {
    color: #4A90E2;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.offer-features li {
    color: #fff;
    padding: 5px 0;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.offer-features li:before {
    content: "✓";
    color: #4A90E2;
    font-weight: bold;
    position: absolute;
    left: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

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

.offer-button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-button.primary {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.offer-button.primary:hover {
    background: linear-gradient(135deg, #357ABD 0%, #2E6AA3 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.offer-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.offer-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.offer-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ================================================
       Settings
    ================================================== */
/* Settings Menu */
.settings-menu {
    position: fixed;
    bottom: 60px;
    left: 50px;
    width: 320px;
    background: #142834;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    padding: 15px;
    font-size: 0.9rem;
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

    .settings-header h3 {
        margin: 0;
        font-size: 16px;
    }

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.settings-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-switch {
    position: relative;
    width: 40px;
    height: 20px;
    background: #333;
    border-radius: 10px;
    appearance: none;
    cursor: pointer;
}

    .toggle-switch:checked {
        background: #5BC1EA;
    }

    .toggle-switch::before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        background: #fff;
        border-radius: 50%;
        top: 2px;
        left: 2px;
        transition: 0.3s;
    }

    .toggle-switch:checked::before {
        left: 22px;
    }





.user-profile {
    position: relative;
    background: #142834;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;  /* Change to flex-start to align items at the top */
    gap: 15px;  /* Add gap between elements */
}

    .user-profile img:not(.edit-profile-button) {  /* Target only the profile image */
        width: 85px;
        height: 85px;
        border-radius: 50%;
        object-fit: cover;
    }

.edit-profile-button {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;  /* Slightly larger edit icon */
    height: 20px;
    cursor: pointer;
    opacity: 0.8;  /* Make it slightly subtle */
}

    .edit-profile-button:hover {
        opacity: 1;
    }

.admin-section {
    margin-top: 20px;
    padding: 0 20px;
}

.admin-button {
    width: 100%;
    padding: 10px;
    background-color: #f1a23c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
}

.admin-button:hover {
    background-color: #d88f2c;
}

/* ================================================
       Responsive Adjustments
    ================================================== */
@media (max-width: 768px) {
    body {
        display: flex;
        flex-direction: column;
    }

    .sidebar {
        flex-direction: row;
        height: 55px;
        width: 100%;
        justify-content: end;
        padding: 15px 10px;
    }

        .sidebar .top-buttons,
        .sidebar .bottom-buttons {
            flex-direction: row;
            gap: 15px;
        }

        .sidebar .logo {
            display: none; /* Hide logo on mobile */
        }

    .list-container,
    .main-container,
    .side-container {
        min-width: 100%;
        max-width: 100%;
    }

    .side-container {
        display: none; /* Hide news sidebar on mobile */
    }

    .expander {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }

    .expander-content {
        top: 60px;
        left: 0;
        right: 0;
        border-radius: 0;
        padding: 10px;
    }

    .chat-content {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }

    .footer {
        left: 0;
        right: 0;
        border-radius: 0;
    }

    .input-container {
        border-radius: 0;
    }

    .settings-menu {
        left: 10px;
        right: 10px;
        width: auto;
        bottom: 10px;
    }

    /* Hide the list-container by default */
    .list-container {
        position: fixed;
        top: 0;
        left: -100%; /* Move off-screen */
        width: 80%; /* Width of the overlay sidebar */
        height: 100vh;
        background: #0d1117;
        z-index: 1000;
        transition: left 0.3s ease; /* Smooth slide-in animation */
        overflow-y: auto;
        margin-top: 55px;
    }

        /* Show the list-container when it has the 'open' class */
        .list-container.open {
            left: 0;
        }

    /* Main container takes full width */
    .main-container {
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        background-color: #0b161c;
        padding: 0px;
    }

    /* Toggle button styling */
    /* Mobile Toggle Button */
    .mobile-toggle {
        display: block;
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 1001;
        cursor: pointer;
        padding: 5px 10px;
        background: transparent;
        border: none;
    }

    /* Menu Icon Container */
    .menu-icon {
        width: 24px;
        height: 24px;
        position: relative;
    }

        /* Lines (Top, Middle, Bottom) */
        .menu-icon .line {
            position: absolute;
            width: 100%;
            height: 2px;
            background: #fff; /* Color of the icon */
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        /* Top Line */
        .menu-icon .top {
            top: 0;
            transform-origin: center;
        }

        /* Middle Line */
        .menu-icon .middle {
            top: 50%;
            transform: translateY(-50%);
        }

        /* Bottom Line */
        .menu-icon .bottom {
            bottom: 0;
            transform-origin: center;
        }

    /* Morph to Close Icon */
    .mobile-toggle.open .top {
        transform: translateY(11px) rotate(45deg); /* Move and rotate to form the top part of the close icon */
    }

    .mobile-toggle.open .bottom {
        transform: translateY(-11px) rotate(-45deg); /* Move and rotate to form the bottom part of the close icon */
    }

    .mobile-toggle.open .middle {
        opacity: 0; /* Fade out the middle line */
    }

    .mobile-toggle.init {
        opacity: 0;
    }

    .list-container::before {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }

    .list-container.open::before {
        display: block;
    }
}



/* ================================================
       Scrollbar
    ================================================== */

/* WebKit browsers */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0f11;
}

::-webkit-scrollbar-thumb {
    background-color: #142834;
    border-radius: 10px;
    border: 3px solid #0a0f11;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #142834;
    }

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #142834 #0a0f11;
}

.admin-button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #f1a23c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.admin-button:hover {
    background-color: #d88f2c;
}

.template-select-wrapper {
    margin-bottom: 10px;
}

.template-select-wrapper select {
    width: 100%;
    max-width: 280px; /* Ensures dropdown doesn't exceed settings panel */
    padding: 5px;
    background: #111E26;
    color: #fff;
    border: 1px solid #244B5F;
    border-radius: 4px;
    font-size: 0.9rem;
}

.template-select-wrapper label {
    display: block;
    margin-bottom: 5px;
}

input,
textarea {
    font-size: 16px !important;
}

/* Book a Call Special Message Styles */
.book-call {
    /* border-left: 4px solid #4A90E2; */
}

.call-title {
    margin: 0 0 8px 0;
    color: #4A90E2;
    font-size: 16px;
    text-align: center;
}

.call-details {
    padding: 20px;
}

.call-description {
    color: #ccc;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}

.call-actions {
    margin-top: 16px;
    text-align: center;
}

.call-button {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
    font-size: 14px;
}

.call-button:hover {
    background: linear-gradient(135deg, #357ABD, #2E6AA3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}