.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000;
}

.auth-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.auth-modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.auth-modal-close:hover {
    background: var(--warm);
    color: var(--text);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-align: center;
}

.auth-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 24px;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.link-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
}

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

.password-input-wrapper {
    position: relative;
}

.password-input-wrapper input {
    width: 100%;
    padding-right: 48px;
}

.password-input-wrapper .toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--warm-dark);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.password-requirements p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-requirements li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.password-requirements li::before {
    content: '○';
    position: absolute;
    left: 0;
}

.password-requirements li.valid {
    color: var(--accent);
}

.password-requirements li.valid::before {
    content: '●';
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.auth-header .back-btn {
    position: absolute;
    left: 0;
    top: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.auth-header .back-btn:hover {
    background: var(--warm);
    color: var(--primary);
}

.auth-logo {
    margin-bottom: 16px;
}

.auth-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-light);
}

.password-input {
    position: relative;
}

.password-input input {
    padding-right: 48px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    padding: 4px;
}

.toggle-password:hover {
    color: var(--primary);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text);
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.forgot-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

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

.btn-full {
    width: 100%;
}

.auth-error {
    margin-top: 16px;
    padding: 12px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: var(--radius);
    font-size: 0.9rem;
    display: none;
}

.auth-error.show {
    display: block;
}

.auth-message {
    margin-top: 16px;
    padding: 12px;
    background: #d1fae5;
    color: #065f46;
    border-radius: var(--radius);
    font-size: 0.9rem;
    display: none;
}

.auth-message.show {
    display: block;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--warm-dark);
}

.auth-footer p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

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

.password-requirements {
    margin-top: 12px;
    padding: 12px;
    background: var(--warm);
    border-radius: var(--radius);
}

.requirement {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 4px 0;
}

.requirement .req-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--warm-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.requirement.valid {
    color: var(--accent);
}

.requirement.valid .req-icon {
    background: var(--accent);
}

.requirement.valid .req-icon::after {
    content: '✓';
    color: white;
    font-size: 10px;
}

.dashboard {
    display: flex;
    min-height: 100vh;
    padding-top: 73px;
}

.sidebar {
    width: 280px;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 73px;
    left: 0;
    bottom: 0;
    z-index: 50;
}

.sidebar-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-home {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 10px 14px;
    margin-bottom: 16px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.sidebar-home:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.sidebar-home svg {
    flex-shrink: 0;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    font-size: 1rem;
}

.user-role {
    font-size: 0.85rem;
    opacity: 0.7;
}

.sidebar-nav {
    flex: 1;
    padding: 16px 0;
    overflow-y: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.nav-item.active {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-left: 3px solid var(--accent);
}

.nav-item .badge {
    margin-left: auto;
    background: var(--accent);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.admin-only {
    display: none;
}

.is-admin .admin-only {
    display: flex;
}

.sidebar-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: var(--radius);
    color: var(--white);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(255,255,255,0.2);
}

.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 32px;
    background: var(--warm);
    min-height: calc(100vh - 73px);
}

.section {
    display: none;
}

.section.active {
    display: block;
}

.section-header {
    margin-bottom: 32px;
}

.section-header h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.section-header p {
    color: var(--text-light);
}

.submissions-list,
.conversations-list,
.users-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.submission-card,
.conversation-card,
.user-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.submission-card:hover,
.conversation-card:hover {
    box-shadow: var(--shadow-hover);
}

.submission-header,
.conversation-header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.submission-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.submission-email {
    color: var(--text-light);
    font-size: 0.9rem;
}

.submission-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.submission-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
    padding: 16px;
    background: var(--warm);
    border-radius: var(--radius);
}

.detail-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.detail-value {
    font-weight: 600;
    color: var(--secondary);
}

.submission-message {
    padding: 16px;
    background: var(--warm);
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
}

.submission-message p {
    color: var(--text);
    font-style: italic;
}

.submission-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--warm-dark);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.conversation-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-open {
    background: #fef3c7;
    color: #92400e;
}

.status-in_progress {
    background: #dbeafe;
    color: #1e40af;
}

.status-closed {
    background: #d1fae5;
    color: #065f46;
}

.conversation-view {
    background: var(--white);
    border-radius: var(--radius-lg);
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.conversation-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--warm-dark);
}

.conversation-header .back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.conversation-header .back-btn:hover {
    background: var(--warm);
    color: var(--primary);
}

.client-info {
    flex: 1;
}

.client-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.client-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.messages-container {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message {
    max-width: 70%;
    padding: 16px;
    border-radius: var(--radius-lg);
}

.message.inbound {
    background: var(--warm);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.message.outbound {
    background: var(--primary);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.message-meta {
    font-size: 0.8rem;
    margin-top: 8px;
    opacity: 0.7;
}

.message-composer {
    padding: 24px;
    border-top: 1px solid var(--warm-dark);
    background: var(--warm);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.message-composer .form-group {
    margin-bottom: 16px;
}

.message-composer .form-group:last-of-type {
    margin-bottom: 16px;
}

.user-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.user-card-info {
    flex: 1;
}

.user-card-name {
    font-weight: 600;
    color: var(--secondary);
}

.user-card-email {
    color: var(--text-light);
    font-size: 0.9rem;
}

.user-card-permission {
    display: flex;
    align-items: center;
    gap: 12px;
}

.permission-select {
    padding: 8px 12px;
    border: 2px solid var(--warm-dark);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
}

.empty-state {
    text-align: center;
    padding: 60px 24px;
    color: var(--text-light);
}

.empty-state svg {
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state h3 {
    margin-bottom: 8px;
    color: var(--secondary);
}

@media (max-width: 1024px) {
    .sidebar {
        width: 240px;
    }
    .main-content {
        margin-left: 240px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }
    .main-content {
        margin-left: 0;
    }
    .dashboard {
        flex-direction: column;
    }
    .submission-details {
        grid-template-columns: 1fr 1fr;
    }
}

.lead-filters {
    margin-bottom: 24px;
}

.lead-filters select {
    padding: 10px 16px;
    border: 2px solid var(--warm-dark);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
    min-width: 200px;
}

.leads-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lead-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lead-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.lead-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.lead-info {
    flex: 1;
    min-width: 0;
}

.lead-name {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.lead-contact {
    color: var(--text-light);
    font-size: 0.9rem;
}

.lead-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lead-status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.lead-status-badge.new { background: #dbeafe; color: #1e40af; }
.lead-status-badge.contacted { background: #fef3c7; color: #92400e; }
.lead-status-badge.qualified { background: #d1fae5; color: #065f46; }
.lead-status-badge.proposal { background: #e0e7ff; color: #3730a3; }
.lead-status-badge.negotiation { background: #fce7f3; color: #9d174d; }
.lead-status-badge.won { background: #d1fae5; color: #065f46; }
.lead-status-badge.lost { background: #fee2e2; color: #991b1b; }

.lead-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    white-space: nowrap;
}

.lead-detail-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 24px;
}

.lead-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lead-contact-card,
.lead-status-card,
.lead-actions-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

.lead-contact-card h3,
.lead-status-card h3,
.lead-actions-card h3 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--warm-dark);
}

.contact-detail {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text);
}

.contact-detail strong {
    color: var(--text-light);
    font-weight: 500;
    display: inline-block;
    min-width: 120px;
}

.lead-status-card select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--warm-dark);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 16px;
}

.lead-metrics {
    display: flex;
    gap: 16px;
}

.metric {
    flex: 1;
    text-align: center;
    padding: 16px;
    background: var(--warm);
    border-radius: var(--radius);
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.lead-actions-card .btn {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lead-actions-card .btn:last-child {
    margin-bottom: 0;
}

.lead-activity-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

.lead-activity-panel h3 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--warm-dark);
}

.activity-timeline {
    position: relative;
}

.activity-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--warm);
    position: relative;
}

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

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon.note { background: #e0e7ff; color: #3730a3; }
.activity-icon.email { background: #dbeafe; color: #1e40af; }
.activity-icon.phone { background: #d1fae5; color: #065f46; }
.activity-icon.status { background: #fef3c7; color: #92400e; }

.activity-content {
    flex: 1;
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}

.activity-title {
    font-weight: 600;
    color: var(--secondary);
}

.activity-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.activity-body {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}

.activity-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 6px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 3000;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content.modal-large {
    max-width: 700px;
}

.modal-header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.4rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--warm);
    color: var(--text);
}

.modal-body {
    padding: 24px;
}

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

.modal-body .form-group:last-child {
    margin-bottom: 0;
}

.modal-body textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--warm-dark);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
}

.modal-body textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.modal-footer {
    padding: 0 24px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.email-toolbar {
    display: flex;
    gap: 4px;
    padding: 8px;
    background: var(--warm);
    border: 2px solid var(--warm-dark);
    border-bottom: none;
    border-radius: var(--radius) var(--radius) 0 0;
}

.email-toolbar button {
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid var(--warm-dark);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.email-toolbar button:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.toolbar-divider {
    width: 1px;
    background: var(--warm-dark);
    margin: 0 8px;
}

.email-editor {
    min-height: 200px;
    padding: 16px;
    border: 2px solid var(--warm-dark);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.6;
    outline: none;
}

.email-editor:focus {
    border-color: var(--primary);
}

.email-editor:empty::before {
    content: attr(placeholder);
    color: var(--text-muted);
}

.email-preview-toggle {
    margin-top: 16px;
    text-align: center;
}

.email-preview {
    margin-top: 16px;
    padding: 20px;
    background: var(--warm);
    border-radius: var(--radius);
    border: 1px solid var(--warm-dark);
}

.lead-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stat-badge {
    padding: 6px 12px;
    background: var(--warm);
    border-radius: var(--radius);
    font-size: 0.85rem;
}

.stat-badge strong {
    color: var(--primary);
}

.lead-header-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.lead-header-info h1 {
    margin: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: var(--white);
    color: var(--primary);
}

@media (max-width: 1024px) {
    .lead-detail-container {
        grid-template-columns: 1fr;
    }
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border: none;
}

.btn-secondary:hover {
    background: #152a45;
}
