/* CSS Variables from Palette */
:root {
    --charcoal-blue: #0F1727;
    --antique-gold: #BD8E3F;
    --white: #FFFFFF;
    --dark-grey: #2a2a2a;
    --light-grey-text: rgba(255, 255, 255, 0.7);
    --card-bg: rgba(255, 255, 255, 0.05);
    --alicia-bg: #0C121E; /* A slightly darker blue for the dashboard */
    --alicia-text-light: #B0B0B0;
    --alicia-border-color: rgba(255, 255, 255, 0.1);
    --alicia-gold-light: #D4AF37; /* Lighter gold for highlights */
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 95%;
}

html, body {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--charcoal-blue);
    color: var(--white);
    line-height: 1.6;
}

/* Typography Utility Classes for Nexa/Poppins */
.heavy {
    font-weight: 800;
    letter-spacing: 0.01em;
}
.bold {
    font-weight: 700;
}
.regular {
    font-weight: 400;
}
.light {
    font-weight: 300;
}
.extralight {
    font-weight: 200;
}
/* Example usage: <span class="heavy">NEXA HEAVY</span> */

/* Utility Classes */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--antique-gold);
    color: var(--charcoal-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(189, 142, 63, 0.4);
}

/* Header & Navigation */
.main-header {
    background: var(--charcoal-blue);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    /* Remove box-shadow for flat look */
    box-shadow: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 70px;
    min-height: 70px;
    background: transparent;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.1;
    gap: 0.75rem;
    height: 70px;
}

.logo-container {
    height: 30px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 0;
}

.logo-container img {
    height: 30px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    margin-left: 0.5rem;
}
.logo-main {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white);
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
.logo-sub {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--white);
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
    font-size: 1.05rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.nav-link:hover {
    color: var(--antique-gold);
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 220px;
}

.search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    border: 2px solid var(--antique-gold);
    padding: 2px 12px 2px 18px;
    min-width: 120px;
    max-width: 220px;
    height: 38px;
    box-sizing: border-box;
}

.search-input {
    background: transparent;
    border: none;
    color: var(--charcoal-blue);
    padding: 0 8px;
    width: 100px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.search-input::placeholder {
    color: #bdbdbd;
    opacity: 1;
}

.search-input:focus {
    outline: none;
}

.search-btn {
    background: transparent;
    border: none;
    color: var(--antique-gold);
    cursor: pointer;
    padding: 0 6px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.search-btn i {
    color: var(--antique-gold);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--white);
}

/* General Section Styling */
section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    gap: 2rem;
    padding-top: 80px; /* Header height */
}

.hero-content {
    flex: 1;
    max-width: 50%;
}

.title-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.vertical-line {
    width: 5px;
    height: 100px;
    background-color: var(--antique-gold);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-grey-text);
    max-width: 500px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    max-height: min(500px, 60vh);
    animation: float 6s ease-in-out infinite;
    margin: 0 auto;
    display: block;
}

@keyframes float {
    0% { transform: translatey(0px); }
    50% { transform: translatey(-20px); }
    100% { transform: translatey(0px); }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Ideas Section */
.ideas-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.ideas-content h2 {
    font-size: 2.5rem;
    color: var(--antique-gold);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.ideas-content p {
    color: var(--light-grey-text);
    margin-bottom: 2rem;
}

.ideas-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.more-info-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.more-info-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.more-info-link:hover i {
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--light-grey-text);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--antique-gold);
}

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.idea-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--antique-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.idea-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.idea-icon {
    font-size: 2.5rem;
    color: var(--antique-gold);
    margin-bottom: 1rem;
}

.idea-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.idea-card p {
    font-size: 0.9rem;
    color: var(--light-grey-text);
}


/* Remaining Sections (Testimonials, Pricing, Login, Footer) */
/* These styles are largely unchanged from the previous version */

.testimonials-section { background-color: var(--charcoal-blue); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card { background: var(--card-bg); padding: 2rem; border-radius: 10px; border-left: 5px solid var(--antique-gold); }
.testimonial-card p { font-style: italic; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card span { font-weight: 600; color: var(--antique-gold); }

.pricing-section h2, .login-section .login-title { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: var(--antique-gold); font-weight: 700; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; align-items: stretch; }
.pricing-card { background: var(--card-bg); padding: 2rem; border-radius: 10px; border: 1px solid var(--antique-gold); display: flex; flex-direction: column; }
.pricing-card h3 { color: var(--antique-gold); font-size: 1.2rem; font-weight: 600; }
.pricing-card h4 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.pricing-card ul { list-style: none; flex-grow: 1; }
.pricing-card ul li { margin-bottom: 1rem; color: var(--light-grey-text); }
.pricing-card ul li i { color: var(--antique-gold); margin-right: 10px; }

.login-section { min-height: 100vh; display: flex; justify-content: center; align-items: center;
     /* background-image: url('https://i.imgur.com/R22f29Y.png'); */
      background-size: cover; background-position: center; }
.login-container { width: 100%; max-width: 400px; text-align: center; }
.login-logo img { width: 150px; margin-bottom: 1.5rem; }
.login-section .login-title { font-size: 1.2rem; font-weight: 300; letter-spacing: 2px; }
.input-group { position: relative; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.input-group i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--light-grey-text); }
.input-group input { width: 100%; padding: 15px 15px 15px 45px; background: transparent; border: none; color: var(--white); font-size: 1rem; }
.input-group input::placeholder { color: rgba(255, 255, 255, 0.5); }
.input-group input:focus { outline: none; }
.forgot-password { display: block; text-align: right; margin-bottom: 2rem; font-size: 0.9rem; color: var(--light-grey-text); text-decoration: none; }
.forgot-password:hover { color: var(--white); }
.btn-secondary { width: 100%; background-color: var(--dark-grey); color: var(--light-grey-text); text-align: center; }
.btn-secondary:hover { background-color: #3a3a3a; color: var(--white); }

.main-footer-bottom { text-align: center; padding: 2rem; background: #0a101f; color: var(--light-grey-text); }

.nav-login-btn {
    background-color: #BD8E3F !important;
    color: #fff !important;
    margin-left: 2rem !important;
    white-space: nowrap;
    box-shadow: none;
    border: none;
    font-weight: 700;
    transition: background 0.3s, color 0.3s;
}

.nav-login-btn:hover {
    background-color: #a97a2e !important;
    color: #fff !important;
}

.login-container .nav-login-btn {
    width: 100%;
    margin-left: 0 !important;
    display: block;
}

.login-container .btn-secondary {
    width: 100%;
    display: block;
}

/* Responsive Design */
@media(max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    .hero-content {
        max-width: 100%;
    }
    .title-container {
        justify-content: center;
    }
    .hero-image {
        margin-top: 2rem;
    }
    .ideas-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ideas-actions {
        align-items: center;
    }
}


@media(max-width: 768px) {
    .hamburger {
        display: block;
    }
    .search-form {
        display: none; /* Hide search form in mobile nav bar */
    }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--charcoal-blue);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
    }
    .nav-item { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .nav-menu.active { left: 0; }

    .hero-content h1 { font-size: 2.5rem; }
}

.features-section {
    background: #131c2b;
    padding: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
}

.feature-card {
    background: transparent;
    border: 2px solid #BD8E3F;
    border-radius: 24px;
    flex: 1 1 0;
    min-width: 280px;
    max-width: 370px;
    padding: 2.5rem 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 10px 20px rgba(189,142,63,0.15);
}

.feature-icon {
    color: #BD8E3F;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.feature-card p {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 400;
    opacity: 0.85;
    margin: 0;
}

@media (max-width: 900px) {
    .features-grid {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .feature-card {
        max-width: 100%;
    }
}

.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: 1.5rem;
    z-index: 1100;
}
.burger-menu .bar {
    width: 28px;
    height: 4px;
    background: var(--white);
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 20%;
    background: var(--charcoal-blue);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    min-width: 180px;
    z-index: 1200;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 8px;
}
.dropdown-menu.show {
    display: flex;
}
.dropdown-menu .btn {
    width: 100%;
    margin-bottom: 1rem;
}
.dropdown-nav-links {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}
@media (max-width: 900px) {
    .nav-menu, .search-form {
        display: none !important;
    }
    .dropdown-nav-links {
        display: flex;
    }
    .burger-menu {
        display: flex;
    }
}
@media (min-width: 901px) {
    .dropdown-nav-links {
        display: none !important;
    }
    .burger-menu {
        display: flex;
    }
}

/* Alicia Dashboard Section Styles */
.alicia-dashboard-section {
    display: flex;
    min-height: 100vh;
    background-color: var(--alicia-bg);
    padding: 0; /* Remove padding from general section style */
    max-width: none; /* Allow it to take full width */
    margin: 0; /* Remove margin from general section style */
}

.alicia-sidebar {
    width: 250px; /* Fixed width as per screenshot */
    background-color: var(--charcoal-blue); /* Darker blue for sidebar */
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid var(--alicia-border-color);
}

.alicia-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--alicia-border-color);
    width: 100%;
}

.alicia-logo-container img {
    width: 80px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 1rem;
}

.alicia-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.alicia-logo-text span:first-child {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
    text-transform: uppercase;
}

.alicia-logo-text span:last-child {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--white);
    text-transform: uppercase;
}

.alicia-menu {
    list-style: none;
    width: 100%;
    padding: 0;
}

.alicia-menu-item {
    background: transparent;
    border: none;
    color: var(--light-grey-text);
    font-size: 1.3rem;
    padding: 1rem 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease;
    font-weight: 400; /* Regular weight */
    letter-spacing: 0.05em;
}

.alicia-menu-item:hover,
.alicia-menu-item.active {
    color: var(--antique-gold);
    background-color: rgba(189, 142, 63, 0.1); /* Slight highlight on hover/active */
    font-weight: 600; /* Bold on active */
}

.alicia-content-area {
    flex-grow: 1;
    display: flex;
    padding: 2rem;
    gap: 2rem; /* Gap between dashboard content and customer card */
}

/* Content Panel Base Styles */
.alicia-content-panel {
    flex: 1 1 70%; /* Takes up more space */
    background-color: var(--alicia-bg);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.alicia-content-panel.fade-out {
    opacity: 0;
}

.alicia-content-panel.fade-in {
    opacity: 1;
}

.alicia-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.alicia-title {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 600;
}

.alicia-header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--light-grey-text);
    font-size: 1.1rem;
}

.alicia-header-icons i {
    cursor: pointer;
    transition: color 0.3s ease;
}

.alicia-header-icons i:hover {
    color: var(--antique-gold);
}

.alicia-summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.summary-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter card background */
    border-radius: 8px;
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--light-grey-text);
    min-height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-card span:first-child {
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.summary-card .count {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.summary-card.active-summary {
    border-left: 4px solid var(--antique-gold);
}

.alicia-search-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.alicia-search-bar input,
select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0.7rem 1rem;
    color: var(--white);
    font-size: 0.95rem;
    flex: 1;
    min-width: 120px;
    appearance: none;
}

select option {
    /* background: var(--alicia-bg); */
    color: black;
}

.alicia-search-bar input::placeholder, 
[name=call_handling] option:first-child, 
[name=twilio_number] option:first-child{
    display: none;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13%205.1L146.2%20202.7%2018.5%2074.5a17.6%2017.6%200%200%0A0-25.3%2023.2%2023.2%200%200%200%200%2025.3l130.8%20128.7a17.6%2017.6%200%200%200%2025.3%200L287%2094.7a23.2%2023.2%200%200%200%200-25.3z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 0.65em auto;
    padding-right: 2.5rem;
}

[name=call_handling], [name=twilio_number] {
    width: 100%;
    padding-left: 45px;
    border: none;
}

.alicia-voicemail-tracking {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.voicemail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 1rem;
}

.voicemail-header h3 {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 600;
}

.voicemail-filters {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.9rem;
    color: var(--light-grey-text);
}

.voicemail-filters label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.voicemail-filters input[type="radio"] {
    margin-right: 0.5rem;
    accent-color: var(--antique-gold);
}

.voicemail-filters i {
    color: var(--antique-gold);
    margin-left: 0.5rem;
}

.alicia-voicemail-tracking table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.alicia-voicemail-tracking th,
.alicia-voicemail-tracking td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.alicia-voicemail-tracking th {
    color: var(--antique-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.alicia-voicemail-tracking td {
    color: var(--light-grey-text);
}

.alicia-voicemail-tracking tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.alicia-voicemail-tracking .status {
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.alicia-voicemail-tracking .one_day {
    background-color: rgba(255, 255, 0, 0.2); /* Light yellow */
    color: #b58900;
}

.alicia-voicemail-tracking .three_day {
    background-color: rgba(255, 0, 0, 0.15); /* Light red */
    color: #ff0000;
}

.alicia-voicemail-tracking .high_priority {
    background-color: rgba(255, 165, 0, 0.2); /* Orange */
    color: #ff8c00;
}

.alicia-voicemail-tracking .resolved {
    background-color: rgba(0, 128, 0, 0.2); /* Green */
    color: #008000;
}
/* Smaller buttons for Summary tab actions */
.btn-small {
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 6px;
    font-weight: 500;
    line-height: 1.2;
}

.btn-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(189, 142, 63, 0.25);
}


.alicia-customer-card {
    flex: 0 0 25%;
    width: 500px;
    background-color: var(--charcoal-blue); /* Darker background for customer card */
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.alicia-customer-card h3 {
    font-size: 1.1rem;
    color: var(--light-grey-text);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.alicia-customer-card .customer-info {
    margin-bottom: 1.5rem;
}

.alicia-customer-card .customer-info h4 {
    font-size: 1.5rem;
    color: var(--antique-gold);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.alicia-customer-card .customer-info span {
    font-size: 0.9rem;
    color: var(--light-grey-text);
}

.alicia-customer-card .customer-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.alicia-customer-card .customer-tabs button {
    background: transparent;
    border: none;
    color: var(--light-grey-text);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.alicia-customer-card .customer-tabs button.active {
    background-color: var(--antique-gold);
    color: var(--charcoal-blue);
    font-weight: 600;
}

.alicia-customer-card .customer-tabs button:hover:not(.active) {
    background-color: rgba(189, 142, 63, 0.2);
    color: var(--white);
}

.alicia-customer-card .customer-summary {
    font-size: 1rem;
    color: var(--white);
    flex-grow: 1; /* Allows it to take available space */
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.alicia-customer-card .customer-actions {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: auto; /* Pushes to the bottom */
}

.alicia-customer-card .customer-actions span {
    color: var(--antique-gold);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.alicia-customer-card .customer-actions span:hover {
    color: var(--alicia-gold-light);
}

.alicia-customer-card .action-dots {
    text-align: center;
    color: var(--light-grey-text);
    font-size: 1.5rem;
    margin-top: 1rem;
    line-height: 0.5;
    letter-spacing: 0.3em;
}


/* Responsive styles for Alicia Dashboard */
@media (max-width: 1200px) {
    .alicia-content-area {
        flex-direction: column;
        padding: 1.5rem;
    }
    .alicia-customer-card {
        max-width: 100%;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .alicia-dashboard-section {
        flex-direction: column;
    }
    .alicia-sidebar {
        width: 100%;
        padding: 1.5rem 1rem;
        border-right: none;
        border-bottom: 1px solid var(--alicia-border-color);
    }
    .alicia-logo-container {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    .alicia-menu {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    .alicia-menu-item {
        padding: 0.7rem 1rem;
        font-size: 1.1rem;
        text-align: center;
        flex: 1 1 auto;
        min-width: 120px;
    }
    .alicia-content-panel {
        padding: 1rem;
    }
    .alicia-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .alicia-summary-cards {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    .alicia-search-bar {
        flex-direction: column;
    }
    .voicemail-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .voicemail-filters {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    .alicia-voicemail-tracking th,
    .alicia-voicemail-tracking td {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    .alicia-customer-card {
        padding: 1rem;
    }
}

#prevPage, #nextPage {
    color: var(--alicia-gold-light);
    background-color: var(--alicia-bg);
}


.dashboard-wrapper {
  display: flex;
  position: relative;
}

.alicia-customer-card {
  display: none;
  flex-shrink: 0;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}

.dashboard-wrapper.show-card .alicia-customer-card {
  display: block;
}

.dashboard-wrapper.show-card .alicia-content-area {
  width: calc(100% - 300px);
}

.close-card-btn {
    color: white;
    background: transparent;
    border: none;
}