/* CSS Custom Properties */
:root {
    /* Layout widths */
    --dashboard-max-width: 1200px;
    --dashboard-content-max-width: 900px;
    --dashboard-padding: 60px 40px;
    --dashboard-padding-mobile: 40px 20px;
    
    /* Responsive breakpoints */
    --breakpoint-tablet: 1024px;
    --breakpoint-mobile: 768px;
}

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

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
}

.app-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Adjust container padding when header is present */
body.bg-gray-50 .app-container {
    padding-top: 0;
}

/* Add padding only for board pages to use full width/height */
body.bg-gray-50 .app-container:has(.table-wrapper) {
    padding: 0 12px !important;
    margin: 0 !important;
}

main:has(.table-wrapper) {
    width: 100%;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

/* Board page specific layout - full height with no scroll on main */
main:has(.table-wrapper) {
    overflow: hidden;
}

/* Navigation Header */
nav {
    flex-shrink: 0;
}

/* Header */
header {
    margin-bottom: 30px;
    flex-shrink: 0;
}

header h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Board Header */
.board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 15px 20px;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    margin: 0 -12px;
    flex-shrink: 0;
    gap: 20px;
}

.board-name {
    font-size: 1.5rem;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Timezone Indicator Button */
.btn-timezone-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
}

.btn-timezone-indicator:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    color: #212529;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.btn-timezone-indicator svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.btn-timezone-indicator:hover svg {
    opacity: 1;
}

#timezone-text {
    font-weight: 500;
    white-space: nowrap;
}

/* Ensure timezone button container doesn't clip tooltip */
#header-timezone-btn {
    position: relative;
}

nav, nav > div {
    overflow: visible !important;
}

/* Rich Timezone Tooltip */
.timezone-tooltip {
    position: absolute;
    right: 100%;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 12px;
    padding: 12px 16px;
    background: #1f2937;
    color: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
    white-space: nowrap;
}

.btn-timezone-indicator:hover .timezone-tooltip,
#header-timezone-btn:hover .timezone-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Tooltip inside dropdown - uses default left positioning */
.timezone-tooltip-dropdown {
    /* Inherits left positioning from .timezone-tooltip */
}

/* Ensure profile dropdown allows overflow for tooltip */
.relative[x-data*="open"] {
    overflow: visible !important;
}

/* Make sure parent elements don't clip the tooltip */
#header-timezone-btn {
    overflow: visible !important;
}

.timezone-tooltip::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: #1f2937;
}

.timezone-tooltip-label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.timezone-tooltip-value {
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
    margin-bottom: 12px;
}

.timezone-tooltip-current {
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timezone-tooltip-current-label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 4px;
}

.timezone-tooltip-current-value {
    font-size: 1rem;
    color: #60a5fa;
    font-weight: 600;
}

.timezone-tooltip-hint {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: #9ca3af;
    font-style: italic;
}

.board-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

/* Header Dropdown */
.header-dropdown {
    position: relative;
}

.btn-header-dropdown {
    padding: 8px 20px;
    background: #17a2b8;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-header-dropdown:hover {
    background: #138496;
}

.dropdown-arrow {
    font-size: 0.7rem;
    color: inherit;
}

.header-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 400px;
    padding: 15px;
}

.header-date-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.header-form-row {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.header-form-row label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
}

.header-form-row input,
.header-form-row select {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
}

.header-form-row button[type="submit"],
.header-form-row .btn-today-header {
    padding: 6px 16px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s;
}

.header-form-row button[type="submit"]:hover,
.header-form-row .btn-today-header:hover {
    background: #0056b3;
}

.header-form-row .btn-today-header {
    background: #17a2b8;
}

.header-form-row .btn-today-header:hover {
    background: #138496;
}

/* Quick Date Range Dropdown */
.quick-date-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 180px;
}

.quick-date-option {
    width: 100%;
    padding: 10px 16px;
    background: #f8f9fa;
    color: #333;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: left;
    transition: all 0.2s;
}

.quick-date-option:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.quick-date-option.active {
    background: #17a2b8;
    color: white;
    border-color: #17a2b8;
}

.quick-date-option.active:hover {
    background: #138496;
    border-color: #138496;
}

#quick-date-range-dropdown {
    min-width: 200px;
    padding: 10px;
}

/* Header Ad Networks Dropdown */
.btn-manage-networks-dropdown {
    width: 100%;
    padding: 8px 16px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s;
    margin-bottom: 12px;
}

.btn-manage-networks-dropdown:hover {
    background: #218838;
}

.header-network-filters {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header-network-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.header-network-option:hover {
    background: #e9ecef;
    border-color: #999;
}

.header-network-option input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
    width: 14px;
    height: 14px;
}

.header-network-option span {
    color: #333;
    font-size: 0.875rem;
}

.header-network-option input[type="checkbox"]:checked + span {
    color: #007bff;
    font-weight: 600;
}

.header-network-option:has(#header-filter-all) {
    background: #e7f3ff;
    border-color: #007bff;
}

.header-network-option:has(#header-filter-all:checked) {
    background: #007bff;
    border-color: #0056b3;
}

.header-network-option:has(#header-filter-all:checked) span {
    color: white;
    font-weight: 600;
}

/* Header Filtering Dropdown */
.header-filtering-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.header-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.header-search-input {
    width: 100%;
    padding: 8px 32px 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
    background: white;
}

.header-search-input::placeholder {
    color: #999;
}

.header-search-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.header-clear-search-btn {
    position: absolute;
    right: 4px;
    background: none;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 3px;
    transition: all 0.2s;
}

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

.header-filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header-filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.header-filter-option:hover {
    background: #e9ecef;
    border-color: #999;
}

.header-filter-option input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
    width: 14px;
    height: 14px;
}

.header-filter-option span {
    color: #333;
    font-size: 0.875rem;
}

.header-filter-option input[type="checkbox"]:checked + span {
    color: #007bff;
    font-weight: 600;
}

.btn-board-settings {
    padding: 8px 20px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-board-settings:hover {
    background: #5a6268;
}

/* Controls */
.controls {
    margin-bottom: 0;
    background: white;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 100%;
}

.controls-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.controls-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.date-range-form {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.date-range-form label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

.date-range-form input,
.date-range-form select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
}

.date-range-form select {
    cursor: pointer;
    background-color: white;
}

.date-range-form button[type="submit"] {
    padding: 8px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
}

.date-range-form button[type="submit"]:hover {
    background: #0056b3;
}

.btn-today {
    padding: 8px 20px;
    background: #17a2b8;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.btn-today:hover {
    background: #138496;
}

.btn-add-campaign {
    padding: 8px 20px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s;
}

.btn-add-campaign:hover {
    background: #5a6268;
}

.btn-add-campaign-inline {
    padding: 6px 10px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s;
    position: relative;
    min-width: 36px;
}

.btn-add-campaign-inline:hover {
    background: #5a6268;
}

.btn-networks {
    padding: 8px 20px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.btn-edit-selected {
    padding: 6px 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 36px;
    position: relative;
    transition: all 0.2s;
}

.btn-edit-selected:not(:disabled):hover {
    background: #0056b3;
}

.btn-edit-selected:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

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

/* Date Range Picker Collapsible Block */
.date-range-block {
    background: #f8f9fa;
    margin: 10px -12px 15px -12px;
    flex-shrink: 0;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.date-range-header {
    padding: 0;
}

.date-range-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    padding: 12px 20px;
    width: 100%;
    text-align: left;
    transition: color 0.2s;
}

.date-range-toggle:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.05);
}

.date-range-content {
    padding: 15px 20px;
}

.date-range-content .date-range-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.date-range-row {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
    width: 100%;
}

/* Ad Networks Collapsible Block */
.ad-networks-block {
    background: #f8f9fa;
    margin: 10px -12px 15px -12px;
    flex-shrink: 0;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.ad-networks-header {
    padding: 0;
}

.ad-networks-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    padding: 12px 20px;
    width: 100%;
    text-align: left;
    transition: color 0.2s;
}

.ad-networks-toggle:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.05);
}

.toggle-icon {
    font-size: 0.8rem;
    transition: transform 0.2s;
    color: #666;
}

.toggle-title {
    user-select: none;
}

.btn-manage-networks {
    padding: 8px 20px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s;
}

.btn-manage-networks:hover {
    background: #218838;
}

.ad-networks-content {
    padding: 15px 20px;
}

.ad-networks-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.ad-networks-content .network-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.ad-networks-actions {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
}

/* Filtering Collapsible Block */
.filtering-block {
    background: #f8f9fa;
    margin: 10px -12px 15px -12px;
    flex-shrink: 0;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.filtering-header {
    padding: 0;
}

.filtering-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    padding: 12px 20px;
    width: 100%;
    text-align: left;
    transition: color 0.2s;
}

.filtering-toggle:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.05);
}

.filtering-content {
    padding: 15px 20px;
}

.filtering-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filtering-inner .search-input-wrapper {
    flex: 0 0 auto;
    width: 300px;
}

.btn-import {
    padding: 8px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    display: inline-block;
}

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

.btn-export {
    padding: 8px 20px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    display: inline-block;
}

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

/* Table wrapper */
.table-wrapper {
    background: white;
    border-radius: 0;
    box-shadow: none;
    overflow: auto;
    position: relative;
    z-index: 2;
    flex: 1;
    min-height: 0;
    width: 100%;
}

/* Table */
.logs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    table-layout: fixed;
    min-width: 100%;
}

.logs-table th {
    background: #f8f9fa;
    font-weight: 600;
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logs-table td {
    padding: 0;
    border-bottom: 1px solid #e9ecef;
}

/* Hidden campaigns styling */
.logs-table tbody tr[data-is-hidden="true"] {
    background-color: #f5f5f5;
}

.logs-table tbody tr[data-is-hidden="true"] .sticky-col {
    background-color: #f5f5f5;
}

.logs-table tbody tr[data-is-hidden="true"]:hover {
    background-color: #eeeeee;
}

.logs-table tbody tr[data-is-hidden="true"]:hover .sticky-col {
    background-color: #eeeeee;
}

/* Ensure regular rows maintain proper background on hover */
.logs-table tbody tr:not([data-is-hidden="true"]):hover .sticky-col {
    background-color: white;
}

/* Campaign column (sticky) */
.sticky-col {
    position: sticky;
    left: 0;
    background: white;
    z-index: 5;
    width: 500px;
    min-width: 500px;
    max-width: 500px;
}

/* Campaign header - sticky both vertically and horizontally */
.logs-table thead .sticky-col {
    z-index: 15;
}

/* Add border shadow that stays visible on scroll */
.sticky-col::before {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    width: 1px;
    background: #dee2e6;
    z-index: 1;
}

.campaign-col {
    width: 500px;
    min-width: 500px;
    max-width: 500px;
}

.logs-table .campaign-col {
    width: 500px;
    min-width: 500px;
    max-width: 500px;
    box-sizing: border-box;
}

.logs-table thead .campaign-col {
    padding: 0;
}

.logs-table tbody .campaign-col {
    padding: 0;
}

.campaign-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px 12px 20px;
}

.campaign-header > span {
    font-weight: 600;
    flex-shrink: 0;
}

.campaign-header-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 350px;
    margin-left: 15px;
}

.campaign-header-inline-search {
    width: 100%;
    padding: 6px 28px 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.85rem;
    background: white;
}

.campaign-header-inline-search::placeholder {
    color: #999;
}

.campaign-header-inline-search:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.inline-clear-search-btn {
    position: absolute;
    right: 4px;
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    border-radius: 3px;
    display: none;
}

.inline-clear-search-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.campaign-search-input {
    padding: 6px 32px 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: normal;
    background: white;
    width: 100%;
}

.campaign-search-input::placeholder {
    color: #999;
}

.campaign-search-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.clear-search-btn {
    position: absolute;
    right: 4px;
    background: none;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 3px;
    transition: all 0.2s;
}

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

/* Network filters */
.network-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Records and hidden campaigns filter toggles */
.records-filter-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.toggle-records-filter,
.toggle-hidden-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    user-select: none;
}

.toggle-records-filter input[type="checkbox"],
.toggle-hidden-filter input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.toggle-records-filter span,
.toggle-hidden-filter span {
    color: #333;
}

/* Hidden campaign toggle in modals */
.toggle-hidden-campaign {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    user-select: none;
    transition: background-color 0.2s;
}

.toggle-hidden-campaign:hover {
    background: #e9ecef;
}

.toggle-hidden-campaign input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.toggle-hidden-campaign span {
    color: #333;
}

.network-filter-option {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    user-select: none;
}

.network-filter-option:hover {
    background: #e9ecef;
    border-color: #999;
}

.network-filter-option input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
    width: 14px;
    height: 14px;
}

.network-filter-option span {
    color: #333;
    white-space: nowrap;
}

.network-filter-option input[type="checkbox"]:checked + span {
    color: #007bff;
    font-weight: 600;
}

#filter-all-collapsible + span {
    font-weight: 600;
}

.network-filter-option:has(#filter-all-collapsible) {
    background: #e7f3ff;
    border-color: #007bff;
}

.network-filter-option:has(#filter-all-collapsible:checked) {
    background: #007bff;
    border-color: #0056b3;
}

.network-filter-option:has(#filter-all-collapsible:checked) span {
    color: white;
}

.logs-table .campaign-name {
    padding: 0;
    font-weight: 500;
    background: white;
    width: 500px;
    min-width: 500px;
    max-width: 500px;
    box-sizing: border-box;
}

.campaign-cell-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 12px 12px 20px;
}

.campaign-text {
    flex: 1;
    min-width: 0;
}

.campaign-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.campaign-header-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
    align-items: center;
    margin-left: auto;
}

/* Campaign selection checkboxes */
.campaign-select-all {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.campaign-select {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.campaign-checkbox-header,
.campaign-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
}

.campaign-checkbox-header:hover,
.campaign-checkbox:hover {
    transform: scale(1.1);
}

/* Date columns */
.date-col {
    width: 165px;
    min-width: 165px;
    max-width: 165px;
    text-align: center;
}

.date-col.today {
    background: #e7f3ff;
}

.date-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.date-header .day {
    font-size: 0.85rem;
    color: #666;
}

.date-header .date {
    font-size: 0.9rem;
    color: #333;
}

/* Log cells */
.log-cell {
    width: 165px;
    min-width: 165px;
    max-width: 165px;
    height: 60px;
}

.log-cell.today {
    background: #f0f8ff;
}

.cell-content {
    padding: 12px;
    height: 100%;
    display: flex;
    align-items: center;
}

.cell-content.clickable {
    cursor: pointer;
    transition: background-color 0.2s;
}

.cell-content.clickable:hover {
    background-color: rgba(0, 123, 255, 0.05);
    outline: 2px solid rgba(0, 123, 255, 0.3);
    outline-offset: -2px;
}

/* Custom tooltips */
.has-tooltip {
    position: relative;
}

.has-tooltip::after {
    content: attr(data-tooltip);
    position: fixed;
    bottom: auto;
    top: var(--tooltip-top, 0);
    left: var(--tooltip-left, 0);
    transform: translate(-50%, -100%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 1rem;
    line-height: 1.5;
    white-space: pre-wrap;
    max-width: 400px;
    width: max-content;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.1s;
    margin-top: -10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.has-tooltip::before {
    content: '';
    position: fixed;
    bottom: auto;
    top: var(--tooltip-top, 0);
    left: var(--tooltip-left, 0);
    transform: translate(-50%, -6px);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    z-index: 10001;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.1s;
}

.has-tooltip:hover::after,
.has-tooltip:hover::before {
    opacity: 1;
}

.log-text {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.empty-cell {
    color: #999;
    font-size: 1.2rem;
}

.btn-add-log {
    padding: 6px 12px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    min-width: 36px;
    position: relative;
}

.btn-add-log:hover {
    background: #218838;
}

.btn-edit-campaign {
    padding: 6px 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 36px;
    position: relative;
}

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

.btn-hide-campaign {
    padding: 6px 10px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 36px;
    position: relative;
}

.btn-hide-campaign:hover {
    background: #5a6268;
}

.btn-delete-campaign {
    padding: 6px 10px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 36px;
    position: relative;
    display: none; /* Hidden for now */
}

.btn-delete-campaign:hover {
    background: #c82333;
}

/* Fast tooltips for campaign action buttons */
.campaign-actions button[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    font-size: 0.8rem;
    font-weight: 400;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s;
    z-index: 1000;
}

.campaign-actions button[data-tooltip]::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 2px;
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s;
    z-index: 1000;
}

/* Tooltip for campaign header actions - appears on the left */
.campaign-header-actions button[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    margin-right: 8px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    font-size: 0.8rem;
    font-weight: 400;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s;
    z-index: 1000;
}

.campaign-header-actions button[data-tooltip]::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    margin-right: 2px;
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s;
    z-index: 1000;
}

/* Override for btn-edit-selected to show tooltip on the right */
#btn-edit-selected[data-tooltip]::after {
    right: auto;
    left: 100%;
    margin-right: 0;
    margin-left: 8px;
}

#btn-edit-selected[data-tooltip]::before {
    right: auto;
    left: 100%;
    margin-right: 0;
    margin-left: 2px;
    border-left-color: transparent;
    border-right-color: rgba(0, 0, 0, 0.9);
}

.campaign-actions button[data-tooltip]:hover::after,
.campaign-actions button[data-tooltip]:hover::before,
.campaign-header-actions button[data-tooltip]:hover::after,
.campaign-header-actions button[data-tooltip]:hover::before {
    opacity: 1;
    transition-delay: 0.3s;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #dee2e6;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #333;
}

.modal-content form {
    padding: 20px;
}

.modal-body {
    padding: 20px;
}

/* Timezone Modal Specific Styles */
.timezone-info-section {
    padding: 20px 20px 0 20px;
}

.info-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 24px;
}

.info-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

.info-content h3 {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
}

.info-content p {
    margin: 0 0 12px 0;
    color: #495057;
    line-height: 1.6;
}

.info-content ul {
    margin: 12px 0;
    padding-left: 20px;
    color: #495057;
}

.info-content ul li {
    margin: 8px 0;
    line-height: 1.5;
}

.info-content ul li strong {
    color: #212529;
}

.info-note {
    margin-top: 16px;
    padding: 12px;
    background: white;
    border-left: 3px solid #0d6efd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.current-timezone-display {
    margin: 16px 0;
    padding: 14px;
    background: #e7f3ff;
    border: 1px solid #b6d4fe;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.current-tz-label {
    font-size: 0.875rem;
    color: #495057;
    font-weight: 500;
}

.current-tz-value {
    font-size: 0.95rem;
    color: #0d6efd;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tz-offset {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group .form-hint,
.form-group small.form-hint {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-top: 6px;
    font-style: italic;
    line-height: 1.4;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
}

.form-group input[type="file"] {
    padding: 8px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    background-color: white;
}

.file-help-text {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

/* Import Campaign Preview */
.import-preview {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 12px;
    max-height: 200px;
    overflow-y: auto;
}

.preview-item {
    padding: 8px 12px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #333;
}

.preview-item:last-child {
    margin-bottom: 0;
}

.readonly-input {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

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

.modal-body .modal-actions {
    margin-top: 30px;
}

.modal-actions-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.modal-actions-right {
    display: flex;
    gap: 10px;
}

.btn-primary,
.btn-secondary {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
}

.btn-primary {
    background: #007bff;
    color: white;
}

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

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-danger {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    background: #dc3545;
    color: white !important;
}

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

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

/* HTMX loading indicator */
.htmx-request {
    opacity: 0.8;
}

/* Networks Modal Styles */
.network-add-form {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-body .network-add-form {
    padding: 0;
}

.network-input-group {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.network-input-group input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
}

.network-input-group input:focus {
    outline: none;
    border-color: #007bff;
}

.network-input-group .btn-primary {
    padding: 10px 24px;
    white-space: nowrap;
}

.networks-list h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.network-items {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 400px;
    overflow-y: auto;
}

.network-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 8px;
    transition: background-color 0.2s;
}

.network-item:hover {
    background: #e9ecef;
}

.network-name {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.btn-delete-network {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.btn-delete-network:hover {
    background: #c82333;
}

.empty-networks {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}

/* Multi-select Dropdown Styles */
.multi-select-wrapper {
    position: relative;
    width: 100%;
}

.multi-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    user-select: none;
}

.multi-select-trigger:hover {
    border-color: #999;
}

.multi-select-trigger:focus,
.multi-select-trigger:active {
    border-color: #007bff;
    outline: none;
}

.selected-text {
    flex: 1;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-arrow {
    margin-left: 10px;
    /* color: #666; */
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.multi-select-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
}

.checkbox-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    transition: background-color 0.2s;
    user-select: none;
}

.checkbox-option:hover {
    background-color: #f8f9fa;
}

.checkbox-option input[type="checkbox"] {
    margin: 0;
    margin-right: 10px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.checkbox-option span {
    flex: 1;
    font-size: 0.95rem;
    color: #333;
}

.no-options {
    padding: 20px;
    text-align: center;
    color: #999;
    font-style: italic;
    font-size: 0.9rem;
}

/* Bulk edit modal styles */
.selected-campaigns-list {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.selected-campaign-item {
    padding: 6px 10px;
    margin-bottom: 4px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    font-size: 0.9rem;
}

.bulk-edit-help-text {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
    font-style: italic;
}

/* Bulk delete confirmation modal styles */
.confirmation-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
}

.warning-text {
    font-size: 0.9rem;
    color: #d32f2f;
    margin-top: 15px;
    padding: 12px;
    background: #ffebee;
    border: 1px solid #ffcdd2;
    border-radius: 4px;
    line-height: 1.5;
}

/* Scrollbar styling for dropdown */
.multi-select-dropdown::-webkit-scrollbar {
    width: 8px;
}

.multi-select-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.multi-select-dropdown::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.multi-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Checkbox list for modals */
.checkbox-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    user-select: none;
}

.checkbox-item:hover {
    background: #e9ecef;
    border-color: #999;
}

.checkbox-item input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
    width: 14px;
    height: 14px;
}

.checkbox-item span {
    color: #333;
    white-space: nowrap;
}

.checkbox-item input[type="checkbox"]:checked + span {
    color: #007bff;
    font-weight: 600;
}

/* Confirmation Modal Styles */
.modal-small {
    max-width: 450px;
}

.confirmation-message {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    margin-top: 0;
    line-height: 1.5;
}

.confirmation-message strong {
    color: #dc3545;
    font-weight: 600;
}

.warning-message {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0;
    margin-bottom: 0;
}

/* Landing page and boards list */
.hero {
    background: white;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.hero h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 25px;
    color: #333;
}

.hero p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 30px;
}

.boards-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
    text-align: left;
}

.board-card {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    transition: all 0.2s;
    overflow: hidden;
}

.board-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
    transform: translateY(-2px);
}

.board-link {
    display: block;
    padding: 20px;
    text-decoration: none;
    color: inherit;
}

.board-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
}

.board-meta {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.hero .btn-secondary {
    margin-top: 20px;
    display: inline-block;
}

/* Note: Board navigation moved to global header */

/* Auth Forms */
.auth-form {
    width: 420px;
    max-width: 90%;
    margin: 60px auto;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.auth-form h2 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.auth-form p {
    text-align: center;
    margin-top: 20px;
}

.auth-form .error {
    background-color: #fee;
    color: #c33;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #fcc;
}

.auth-form .success {
    background-color: #efe;
    color: #3a3;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #cfc;
}

.auth-form .success-message {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.auth-form .success-message svg {
    color: #22c55e;
    margin: 0 auto;
    display: block;
}

.auth-form .success-message h3 {
    color: #166534;
    font-size: 24px;
    font-weight: 600;
    margin: 16px 0 8px 0;
}

.auth-form .success-message p {
    color: #15803d;
    margin: 8px 0;
}

.auth-form .success-message a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.auth-form .success-message a:hover {
    text-decoration: underline;
}

.auth-form .info {
    background-color: #e0f2fe;
    color: #075985;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #7dd3fc;
}

.auth-form .warning {
    background-color: #fef3c7;
    color: #92400e;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #fbbf24;
}

/* Form Description and Hints */
.auth-form .form-description {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
    margin-top: -10px;
}

.auth-form .form-hint {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-top: 6px;
    font-style: italic;
}

.auth-form .form-footer {
    text-align: center;
    margin-top: 24px;
    margin-bottom: 0;
}

.auth-form .form-footer a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

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

/* Landing Page Styles */
.landing-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #6366f1 100%);
    color: white;
    padding: 100px 20px 0px;
    text-align: center;
    position: relative;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 20% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(99, 102, 241, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.landing-hero .landing-container {
    position: relative;
    z-index: 1;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
}

.hero-image {
    padding: 50px 0px 10px;
}

.hero-subheadline {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.btn-hero {
    display: inline-block;
    background: white;
    color: #4f46e5;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-large {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 30px 0 20px;
}

.btn-hero-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* Social Proof Bar */
.social-proof-bar {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    padding: 40px 20px;
    position: relative;
}

.social-proof-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 0% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.proof-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proof-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

@media (max-width: 768px) {
    .proof-stats {
        gap: 30px;
    }
    
    .proof-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

.landing-section {
    padding: 100px 20px;
}

.bg-white {
    background: white;
}

/* Problem Section - Redesigned */
.bg-problem {
    background: linear-gradient(180deg, #fafafe 0%, #f5f3ff 100%);
    position: relative;
}

.bg-problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.problem-section {
    position: relative;
    z-index: 1;
}

.problem-badge,
.solution-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.problem-badge {
    background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.solution-badge {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.section-heading-dramatic {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.text-muted-italic {
    color: #6b7280;
    font-style: italic;
    font-weight: 600;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.problem-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-scenario {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.problem-scenario:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.scenario-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.problem-scenario p {
    margin: 0;
    font-size: 1.1rem;
    color: #374151;
}

.problem-scenario strong {
    color: #1a1a1a;
}

.pain-card {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(30, 27, 75, 0.4);
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #818cf8, #a78bfa, #818cf8);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.pain-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pain-quote {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    font-style: italic;
}

.pain-context {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.solution-reveal {
    text-align: center;
    padding-top: 20px;
    border-top: 2px dashed #e5e7eb;
}

.solution-arrow {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 15px;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.solution-statement {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 20px 0;
}

.solution-description {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Responsive for problem section */
@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-heading-dramatic {
        font-size: 2rem;
    }
    
    .pain-quote {
        font-size: 1.3rem;
    }
    
    .solution-statement {
        font-size: 1.5rem;
    }
    
    .solution-description {
        font-size: 1.1rem;
    }
}

/* Section 2: How It Works - Dark Theme */
.section-how-it-works {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    position: relative;
}

.section-how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 0% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-how-it-works .landing-container {
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #a78bfa;
    margin-bottom: 15px;
}

.section-eyebrow-dark {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #8b5cf6;
    margin-bottom: 15px;
    text-align: center;
}

.section-heading-light {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 50px;
    max-width: 800px;
}

/* Steps Flow */
.steps-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
}

.step-item {
    flex: 1;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.step-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.step-highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-color: rgba(168, 85, 247, 0.3);
}

.step-highlight:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25) 0%, rgba(168, 85, 247, 0.15) 100%);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
}

.step-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.5), rgba(168, 85, 247, 0.5));
    align-self: center;
    position: relative;
    flex-shrink: 0;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(168, 85, 247, 0.7);
    font-size: 1.2rem;
}

/* How It Works Footer */
.how-it-works-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.how-it-works-footer .footer-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.simple-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive for How It Works section */
@media (max-width: 900px) {
    .steps-flow {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .step-item {
        max-width: 100%;
        width: 100%;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, rgba(102, 126, 234, 0.5), rgba(168, 85, 247, 0.5));
    }
    
    .step-connector::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -8px;
        transform: translateX(50%);
    }
}

@media (max-width: 768px) {
    .section-heading-light {
        font-size: 1.8rem;
    }
    
    .step-item {
        padding: 30px 25px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .how-it-works-footer .footer-tagline {
        font-size: 1.2rem;
    }
}

/* Section 3: Why It Works - Comparison */
.section-why-it-works {
    background: linear-gradient(180deg, #ffffff 0%, #fafafe 50%, #f5f3ff 100%);
    position: relative;
}

.section-why-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 10% 90%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.section-why-it-works .landing-container {
    position: relative;
    z-index: 1;
}

.section-heading-contrast {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.section-heading-contrast em {
    font-style: normal;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 60px;
}

.comparison-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.comparison-before {
    border: 2px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.comparison-before:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.comparison-after {
    border: 2px solid #8b5cf6;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
    background: linear-gradient(180deg, #faf5ff 0%, white 100%);
}

.comparison-after:hover {
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25);
}

.comparison-label {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.comparison-before .comparison-label {
    background: #f3f4f6;
    color: #6b7280;
}

.comparison-after .comparison-label {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    color: white;
}

.comparison-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.comparison-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.comparison-list li {
    padding: 12px 0;
    font-size: 1rem;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 25px;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-before .comparison-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d1d5db;
    font-size: 1.2rem;
}

.comparison-after .comparison-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
}

.comparison-result {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    padding-top: 10px;
}

.comparison-before .comparison-result {
    color: #9ca3af;
}

.comparison-after .comparison-result {
    color: #7c3aed;
}

.comparison-result em {
    font-style: italic;
}

.comparison-vs {
    font-size: 1.2rem;
    font-weight: 800;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Why Works Callout */
.why-works-callout {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-works-callout .callout-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 10px 0;
}

.why-works-callout .callout-main {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0;
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mid-page CTA */
.mid-page-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.mid-cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4b5563;
    margin: 0 0 20px 0;
}

.btn-mid-cta {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 16px 36px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-mid-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.45);
    color: white;
}

@media (max-width: 768px) {
    .mid-page-cta {
        margin-top: 40px;
        padding: 30px 20px;
    }
    
    .mid-cta-text {
        font-size: 1.1rem;
    }
    
    .btn-mid-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Responsive for Why It Works */
@media (max-width: 900px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comparison-vs {
        padding: 10px 0;
    }
}

@media (max-width: 768px) {
    .section-heading-contrast {
        font-size: 2rem;
    }
    
    .comparison-card {
        padding: 30px 25px;
    }
    
    .comparison-card h3 {
        font-size: 1.3rem;
    }
    
    .why-works-callout {
        padding: 30px 20px;
    }
    
    .why-works-callout .callout-main {
        font-size: 1.5rem;
    }
}

/* Section 4: Audience - Professional with Visual Interest */
.section-audience {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    position: relative;
}

.section-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 0% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-audience .landing-container {
    position: relative;
    z-index: 1;
}

.audience-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.audience-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.audience-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
    position: relative;
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.audience-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.audience-card-accent {
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #a78bfa);
    border-radius: 0 0 3px 3px;
    opacity: 0;
    transition: opacity 0.3s;
}

.audience-card:hover .audience-card-accent {
    opacity: 1;
}

.audience-card-number {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 0 0 12px 0;
}

.audience-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.audience-cta {
    text-align: center;
    padding-top: 20px;
}

.audience-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 8px 0;
}

.audience-cta em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.audience-cta-answer {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(90deg, #818cf8, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive for Audience section */
@media (max-width: 900px) {
    .audience-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .audience-heading {
        font-size: 2rem;
    }
    
    .audience-card {
        padding: 28px 24px;
    }
    
    .audience-cta-answer {
        font-size: 1.2rem;
    }
}

/* Section 5: Feeling - Calm & Spacious */
.section-feeling {
    background: linear-gradient(180deg, #ffffff 0%, #fafafe 100%);
    position: relative;
}

.section-feeling .landing-container {
    text-align: center;
}

.feeling-header {
    margin-bottom: 70px;
}

.feeling-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feeling-word {
    font-size: 3.5rem;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    position: relative;
}

.feeling-word:nth-child(1) {
    color: #6366f1;
}

.feeling-word:nth-child(2) {
    color: #8b5cf6;
}

.feeling-word:nth-child(3) {
    color: #a78bfa;
}

.feeling-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feeling-pillar {
    text-align: center;
    padding: 0 20px;
}

.pillar-line {
    width: 40px;
    height: 3px;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.feeling-pillar:nth-child(1) .pillar-line {
    background: linear-gradient(90deg, #6366f1, #818cf8);
}

.feeling-pillar:nth-child(2) .pillar-line {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.feeling-pillar:nth-child(3) .pillar-line {
    background: linear-gradient(90deg, #a78bfa, #c4b5fd);
}

.feeling-pillar h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 15px 0;
}

.feeling-pillar p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.feeling-closing {
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
}

.feeling-closing p {
    font-size: 1.3rem;
    font-weight: 500;
    color: #94a3b8;
    margin: 0;
    letter-spacing: 0.02em;
}

/* Responsive for Feeling section */
@media (max-width: 900px) {
    .feeling-pillars {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
    }
    
    .feeling-heading {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .feeling-word {
        font-size: 2.5rem;
    }
    
    .feeling-closing p {
        font-size: 1.1rem;
    }
}

/* Section 6: Testimonials Carousel */
.section-testimonials {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    position: relative;
}

.section-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-testimonials .landing-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.testimonials-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 50px;
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
}

.testimonials-track {
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.testimonial-text {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.6;
    color: white;
    margin: 0 0 40px 0;
    font-style: italic;
    padding: 0;
    border: none;
    quotes: """ """;
}

.testimonial-text::before {
    content: open-quote;
    color: rgba(139, 92, 246, 0.5);
}

.testimonial-text::after {
    content: close-quote;
    color: rgba(139, 92, 246, 0.5);
}

.testimonial-author-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.author-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.nav-dot.active {
    background: white;
    transform: scale(1.2);
}

.testimonials-tagline {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

/* Transition Section (Light bridge between dark sections) */
.section-transition {
    background: linear-gradient(180deg, #ffffff 0%, #fafafe 50%, #f5f3ff 100%);
    padding: 60px 20px;
    position: relative;
}

.section-transition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 30% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.transition-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.transition-question {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 30px 0;
}

.transition-answers {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.transition-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
}

.transition-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .section-transition {
        padding: 50px 20px;
    }
    
    .transition-question {
        font-size: 1.25rem;
    }
    
    .transition-answers {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .transition-item {
        font-size: 0.95rem;
    }
}

/* Responsive for Testimonials */
@media (max-width: 768px) {
    .testimonial-text {
        font-size: 1.4rem;
    }
    
    .testimonials-track {
        min-height: 320px;
    }
    
    .testimonial-author-block {
        flex-direction: column;
        gap: 12px;
    }
    
    .testimonial-author-info {
        text-align: center;
    }
}

.bg-gray {
    background: #f8f9fa;
}

.bg-testimonial {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

/* Section 7: Final CTA */
.section-final-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    position: relative;
}

.section-final-cta .landing-container {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-main-heading {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.cta-subheading {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 
        0 10px 40px rgba(99, 102, 241, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 40px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 50px rgba(99, 102, 241, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.cta-button-text {
    position: relative;
}

.cta-button-arrow {
    font-size: 1.4rem;
    transition: transform 0.3s;
}

.cta-button:hover .cta-button-arrow {
    transform: translateX(4px);
}

.cta-trust-signals {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.trust-icon {
    font-size: 1.1rem;
}

/* CTA Decorative Elements */
.cta-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.decoration-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.ring-1 {
    width: 400px;
    height: 400px;
    animation: pulse-ring 4s ease-in-out infinite;
}

.ring-2 {
    width: 600px;
    height: 600px;
    animation: pulse-ring 4s ease-in-out infinite 1s;
}

.ring-3 {
    width: 800px;
    height: 800px;
    animation: pulse-ring 4s ease-in-out infinite 2s;
}

@keyframes pulse-ring {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Responsive for Final CTA */
@media (max-width: 768px) {
    .cta-main-heading {
        font-size: 2.5rem;
    }
    
    .cta-subheading {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 18px 32px;
        font-size: 1.1rem;
    }
    
    .cta-trust-signals {
        gap: 20px;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    .decoration-ring {
        display: none;
    }
}

.bg-cta {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.bg-testimonial .section-heading,
.bg-cta .section-heading {
    color: white;
}

.cta-heading {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: white;
}

.section-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
}

.bg-testimonial .section-content,
.bg-cta .section-content {
    color: rgba(255, 255, 255, 0.95);
}

.section-content p {
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 30px;
    color: #333;
}

.bg-testimonial .highlight-text,
.bg-cta .highlight-text {
    color: white;
}

.feature-list,
.audience-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li,
.audience-list li {
    padding: 12px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid #e0e0e0;
}

.feature-list li:last-child,
.audience-list li:last-child {
    border-bottom: none;
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.7;
    margin: 30px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid white;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.testimonial-subtext {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-top: 40px;
}

.text-center {
    text-align: center;
}

.cta-subtext {
    font-size: 1rem;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.landing-footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #a78bfa;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.2);
}

/* Dashboard view for logged in users */
.hero-dashboard {
    padding: 60px 20px;
    background: white;
}

.container-dashboard {
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.boards-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.board-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e0e0e0;
}

.board-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.board-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.board-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.board-meta {
    color: #666;
    font-size: 0.9rem;
}

.btn-primary-large {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Legal Pages (Privacy, Terms) */
.legal-page {
    background: white;
    padding: 80px 20px;
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 1rem;
    color: #666;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.legal-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 25px 0 15px;
    color: #333;
}

.legal-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 20px 25px;
    line-height: 1.8;
}

.legal-section li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 10px;
}

.legal-section a {
    color: #667eea;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-back {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.btn-back {
    display: inline-block;
    color: #667eea;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #667eea;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-back:hover {
    background: #667eea;
    color: white;
}

/* Contact Page */
.contact-page {
    background: #f8f9fa;
    padding: 80px 20px;
    min-height: 100vh;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 60px;
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-success {
    background: #d4edda;
    color: #155724;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #c3e6cb;
}

.contact-success p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    background: #667eea;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.contact-method {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.contact-method h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-method p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

.contact-method a {
    color: #667eea;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-method ul {
    margin: 10px 0 0 20px;
}

.contact-method li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-back {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

/* Pricing Page */
.pricing-page {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 80px 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.pricing-subtitle {
    font-size: 1.3rem;
    color: #666;
}

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.pricing-card.featured {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.35);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f5576c;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.pricing-card.featured .plan-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.pricing-card.featured .plan-name {
    color: white;
}

.plan-price {
    margin-bottom: 15px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #667eea;
}

.pricing-card.featured .price-amount {
    color: white;
}

.price-period {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.pricing-card.featured .price-period {
    color: rgba(255, 255, 255, 0.9);
}

.plan-description {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.pricing-card.featured .plan-description {
    color: rgba(255, 255, 255, 0.95);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.plan-features li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card.featured .plan-features li {
    color: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.plan-features li:last-child {
    border-bottom: none;
}

.btn-plan {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
}

.btn-plan:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-plan.featured {
    background: white;
    color: #667eea;
    border-color: white;
    transition: all 0.2s ease;
}

.btn-plan.featured:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Pricing FAQ */
.pricing-faq {
    max-width: 1100px;
    margin: 0 auto 80px;
    text-align: center;
}

.pricing-faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Pricing CTA */
.pricing-cta {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.pricing-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.pricing-cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.btn-cta {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 18px 50px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
    
    .section-content {
        font-size: 1.1rem;
    }
    
    .testimonial-quote {
        font-size: 1.2rem;
        padding: 20px;
    }
    
    .landing-section {
        padding: 70px 20px;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 1rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-4px);
        box-shadow: 0 12px 24px rgba(102, 126, 234, 0.35);
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-faq h2 {
        font-size: 1.8rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cta h2 {
        font-size: 1.8rem;
    }
    
    .pricing-cta p {
        font-size: 1.1rem;
    }
}

/* ========================================
   DASHBOARD PAGE STYLES
   ======================================== */

.dashboard-container {
    max-width: var(--dashboard-max-width);
    margin: 0 auto;
    padding: var(--dashboard-padding);
}

/* Content wrapper for boards section - matches welcome section width */
.dashboard-content-wrapper {
    max-width: var(--dashboard-content-max-width);
    margin: 0 auto;
}

/* Dashboard Success Message */
.dashboard-success-message {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
    animation: slideDown 0.3s ease-out;
}

.dashboard-success-message svg {
    color: #22c55e;
    flex-shrink: 0;
}

.dashboard-success-message span {
    color: #166534;
    font-weight: 500;
    flex: 1;
}

.dashboard-success-message .close-success {
    background: none;
    border: none;
    color: #16a34a;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.dashboard-success-message .close-success:hover {
    background-color: rgba(22, 163, 74, 0.1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   ENHANCED DASHBOARD (Users with Boards)
   ======================================== */

/* Welcome Header */
.dashboard-welcome-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.welcome-back {
    flex: 1;
}

.dashboard-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.dashboard-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Statistics Overview Cards */
.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-card-action {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-color: #007bff;
}

.stat-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-card-action .stat-value {
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stat-card-action .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.stat-label-large {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.stat-sublabel {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Main Dashboard Grid */
.dashboard-main-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    margin-bottom: 40px;
}

/* Dashboard Sections */
.dashboard-section {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.dashboard-section:last-child {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f5f5f5;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.section-count {
    background: #007bff;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Enhanced Board Cards */
.boards-list-enhanced {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.board-card-enhanced {
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    transition: all 0.2s ease;
    overflow: hidden;
}

.board-card-enhanced:hover {
    border-color: #007bff;
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.15);
    transform: translateX(4px);
}

.board-link-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    text-decoration: none;
    color: inherit;
}

.board-card-main {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.board-card-icon {
    font-size: 2rem;
    line-height: 1;
}

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

.board-card-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.board-card-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.board-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #666;
}

.board-stat-icon {
    font-size: 0.9rem;
}

.board-stat-empty {
    color: #999;
    font-style: italic;
}

.board-card-arrow {
    font-size: 1.5rem;
    color: #007bff;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.board-card-enhanced:hover .board-card-arrow {
    transform: translateX(4px);
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    display: flex;
    flex-direction: column;
}

/* Recent Activity */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.activity-item {
    display: flex;
    gap: 16px;
    padding: 12px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: background 0.2s ease;
}

.activity-item:hover {
    background: #e7f3ff;
}

.activity-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 8px;
    min-width: 50px;
}

.activity-day {
    font-size: 1.3rem;
    font-weight: 700;
    color: #007bff;
    line-height: 1;
}

.activity-month {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    margin-top: 2px;
}

.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.activity-board {
    font-size: 0.8rem;
    font-weight: 600;
    color: #007bff;
}

.activity-separator {
    color: #ccc;
    font-size: 0.8rem;
}

.activity-campaign {
    font-size: 0.8rem;
    color: #666;
}

.activity-text {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
    word-wrap: break-word;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state-text {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Quick Actions */
.quick-actions-section {
    background: #f8f9fa;
    border: none;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 12px;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    width: 100%;
}

.quick-action-btn:hover {
    border-color: #007bff;
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.quick-action-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.quick-action-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Tips Card */
.tips-card {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border: none;
    color: #1a1a1a;
}

.tips-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #1a1a1a;
}

.tips-card-content {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

/* Welcome Section (for new users with no boards) */
.dashboard-welcome {
    max-width: var(--dashboard-content-max-width);
    margin: 0 auto;
}

.welcome-hero {
    text-align: center;
    margin-bottom: 50px;
}

.welcome-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.welcome-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin: 0;
}

/* Welcome CTA Card */
.welcome-cta-card {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.2);
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-primary-large {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #007bff;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary-large:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Info Section */
.info-section {
    margin-bottom: 60px;
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.info-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.info-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Tips Section */
.tips-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
}

.tips-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.tips-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 1.2rem;
}

.tips-list li strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Example Section */
.example-section {
    margin-bottom: 60px;
}

.example-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 30px;
}

.example-box {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 40px;
}

.example-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.example-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.example-table {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.example-row {
    display: grid;
    grid-template-columns: 180px repeat(3, 100px);
}

.example-row.example-header {
    background: #007bff;
    color: white;
    font-weight: 600;
}

.example-row:not(.example-header) {
    background: white;
}

.example-row:not(.example-header):nth-child(even) {
    background: #f8f9fa;
}

.example-cell {
    padding: 12px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.example-cell:last-child {
    border-right: none;
}

.example-row:last-child .example-cell {
    border-bottom: none;
}

.example-cell.campaign-name {
    font-weight: 600;
    color: #1a1a1a;
    justify-content: flex-start;
}

.example-cell.has-log {
    font-size: 1.5rem;
    background: #e7f3ff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.example-cell.has-log:hover {
    background: #cce5ff;
}

.example-note {
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    margin: 0;
    font-style: italic;
}

/* Final CTA */
.final-cta {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
}

.final-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.btn-primary-xl {
    display: inline-block;
    padding: 18px 48px;
    background: #007bff;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary-xl:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
}

/* Responsive Dashboard Styles */
@media (max-width: 1024px) {
    .dashboard-main-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        padding: var(--dashboard-padding-mobile);
    }
    
    /* Enhanced Dashboard (with boards) */
    .dashboard-welcome-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .dashboard-main-title {
        font-size: 2rem;
    }
    
    .dashboard-subtitle {
        font-size: 1rem;
    }
    
    .stats-overview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .dashboard-main-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .board-card-enhanced {
        transform: none !important;
    }
    
    .board-card-main {
        gap: 12px;
    }
    
    .board-card-icon {
        font-size: 1.5rem;
    }
    
    .board-card-name {
        font-size: 1.1rem;
    }
    
    .board-card-stats {
        flex-direction: column;
        gap: 6px;
    }
    
    .activity-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .activity-date {
        align-self: flex-start;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    /* New user dashboard */
    .welcome-title {
        font-size: 2rem;
    }
    
    .welcome-subtitle {
        font-size: 1.1rem;
    }
    
    .welcome-cta-card {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-title {
        font-size: 1.6rem;
    }
    
    .tips-section {
        padding: 30px 20px;
    }
    
    .tips-title {
        font-size: 1.5rem;
    }
    
    .tips-list li {
        font-size: 1rem;
    }
    
    .example-box {
        padding: 24px 16px;
    }
    
    .example-table {
        overflow-x: auto;
        display: block;
    }
    
    .example-row {
        grid-template-columns: 140px repeat(3, 80px);
        min-width: 380px;
    }
    
    .example-cell {
        font-size: 0.8rem;
        padding: 10px 8px;
    }
    
    .final-cta {
        padding: 40px 24px;
    }
    
    .final-cta-title {
        font-size: 1.6rem;
    }
    
    .btn-primary-xl {
        padding: 16px 36px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .stats-overview {
        grid-template-columns: 1fr;
    }
    
    .dashboard-main-title {
        font-size: 1.6rem;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
}

/* ============================================
   BOARD WIZARD STYLES
   ============================================ */

/* Wizard Overlay - dims the entire page */
.wizard-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    z-index: 9998;
    pointer-events: none;
    animation: wizardFadeIn 0.3s ease-in-out;
}

@keyframes wizardFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Wizard Spotlight - creates a cutout effect with box-shadow */
.wizard-spotlight {
    position: fixed;
    background-color: transparent;
    border: 4px solid #4CAF50;
    border-radius: 8px;
    /* This creates the dark overlay effect with a "hole" for the spotlight */
    box-shadow: 
        /* Inner glow */
        inset 0 0 0 2px rgba(76, 175, 80, 0.3),
        /* Green glow around the element */
        0 0 0 8px rgba(76, 175, 80, 0.2),
        0 0 30px 8px rgba(76, 175, 80, 0.4),
        /* MASSIVE shadow that covers everything else - this creates the "overlay" */
        0 0 0 9999px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

/* Target element styling - no z-index changes needed */
.wizard-target-highlight {
    position: relative;
}

/* Wizard Container - the main instruction box */
.wizard-container {
    position: fixed;
    z-index: 10000;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    animation: wizardSlideIn 0.3s ease-in-out;
    /* Smooth transition when moving between steps */
    transition: top 0.3s ease-in-out, left 0.3s ease-in-out, transform 0.3s ease-in-out;
}

@keyframes wizardSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-content {
    padding: 0;
}

/* Wizard Header */
.wizard-header {
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid #e0e0e0;
}

.wizard-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.wizard-progress {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wizard-step-indicator {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

/* Wizard Body */
.wizard-body {
    padding: 20px 24px;
}

.wizard-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.wizard-description strong {
    color: #4CAF50;
    font-weight: 600;
}

/* Wizard Footer */
.wizard-footer {
    padding: 16px 24px 20px 24px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wizard-dismiss-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.wizard-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Wizard Buttons */
.wizard-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.wizard-btn:hover {
    transform: translateY(-1px);
}

.wizard-btn:active {
    transform: translateY(0);
}

.wizard-btn-primary {
    background-color: #4CAF50;
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.wizard-btn-primary:hover {
    background-color: #45a049;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.wizard-btn-success {
    background-color: #2196F3;
    color: white;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.wizard-btn-success:hover {
    background-color: #1976D2;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.wizard-btn-secondary {
    background-color: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.wizard-btn-secondary:hover {
    background-color: #e8e8e8;
    border-color: #ccc;
}

.wizard-btn-text {
    background-color: transparent;
    color: #666;
    padding: 8px 12px;
    font-size: 0.875rem;
    text-align: left;
    border: 1px solid transparent;
}

.wizard-btn-text:hover {
    color: #333;
    background-color: #f5f5f5;
    border-color: #e0e0e0;
    transform: none;
}

/* Responsive Wizard */
@media (max-width: 768px) {
    .wizard-container {
        max-width: calc(100vw - 32px) !important;
        left: 16px !important;
        right: 16px !important;
    }
    
    .wizard-title {
        font-size: 1.2rem;
    }
    
    .wizard-description {
        font-size: 0.95rem;
    }
    
    .wizard-footer {
        flex-direction: column;
    }
    
    .wizard-navigation {
        justify-content: stretch;
    }
    
    .wizard-btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .wizard-header {
        padding: 20px 16px 14px 16px;
    }
    
    .wizard-body {
        padding: 16px;
    }
    
    .wizard-footer {
        padding: 12px 16px 16px 16px;
    }
    
    .wizard-title {
        font-size: 1.1rem;
    }
    
    .wizard-description {
        font-size: 0.9rem;
    }
    
    .wizard-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Enhanced Timezone Dropdown Options */
select[name="timezone"] option,
#timezone-select option {
    padding: 6px 8px;
    font-size: 14px;
    line-height: 1.6;
}

/* Ensure timezone selects are wide enough for enhanced text */
select[name="timezone"],
#timezone-select {
    width: 100%;
    font-size: 14px;
}

/* ============================================================================
   TIER MANAGEMENT STYLES
   ============================================================================ */

/* Tier Name Badges */
.tier-name-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
}

.tier-name-badge.tier-free {
    background-color: #e5e7eb;
    color: #374151;
}

.tier-name-badge.tier-pro {
    background-color: #dbeafe;
    color: #1e40af;
}

.tier-name-badge.tier-team {
    background-color: #d1fae5;
    color: #065f46;
}

.tier-name-badge.tier-enterprise {
    background-color: #e9d5ff;
    color: #6b21a8;
}

/* Unlimited Badge */
.unlimited-badge {
    display: inline-block;
    padding: 2px 8px;
    background-color: #f3f4f6;
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
}

/* Badge Success/Disabled */
.badge-success {
    display: inline-block;
    padding: 2px 8px;
    background-color: #d1fae5;
    color: #065f46;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
}

.badge-disabled {
    display: inline-block;
    padding: 2px 8px;
    background-color: #f3f4f6;
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
}

/* Tiers Table */
.tiers-table {
    width: 100%;
    border-collapse: collapse;
}

.tiers-table th {
    background-color: #f9fafb;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
}

.tiers-table td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.tiers-table tr:hover {
    background-color: #f9fafb;
}

/* Tiers Header */
.tiers-header {
    margin-bottom: 24px;
}

.tiers-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.tiers-header p {
    color: #6b7280;
    font-size: 14px;
}

/* Tier Info Box (in modals) */
.user-info-box {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

.user-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.user-info-row .label {
    font-weight: 500;
    color: #6b7280;
}

.user-info-row .value {
    font-weight: 600;
    color: #111827;
}

/* Tier Preview Box */
.tier-preview-box {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

.tier-preview-box h4 {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
}

.tier-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-features-list li {
    padding: 6px 0;
    font-size: 14px;
    color: #4b5563;
}

.tier-features-list li strong {
    color: #111827;
}

/* Modal Limit Warning */
.modal-limit-warning .modal-header {
    background-color: #fef3c7;
    border-bottom: 1px solid #fcd34d;
}

.limit-message {
    padding: 16px;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
    margin-bottom: 16px;
}

.limit-message .limit-description {
    color: #78350f;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.tier-info-box {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

.tier-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.tier-info-row:last-child {
    border-bottom: none;
}

/* Upgrade Benefits */
.upgrade-benefits {
    margin: 20px 0;
}

.upgrade-benefits h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #4b5563;
    font-size: 14px;
}

.benefits-list li svg {
    color: #10b981;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Modal Info/Warning boxes */
.modal-info {
    background-color: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 4px;
    padding: 12px;
    margin: 16px 0;
    font-size: 14px;
    color: #1e40af;
}

.modal-warning {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
    padding: 12px;
    margin: 16px 0;
    font-size: 14px;
    color: #78350f;
}

/* Button Styles for Tier Management */
.btn-primary-small {
    background-color: #3b82f6 !important;
    color: white !important;
    border: none !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background-color 0.2s !important;
}

.btn-primary-small:hover {
    background-color: #2563eb !important;
    color: white !important;
}

.btn-primary-small:disabled {
    background-color: #9ca3af !important;
    cursor: not-allowed !important;
}

/* Tier Limit Warning in Forms */
.tier-limit-warning {
    margin-top: 8px;
    padding: 12px;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
    font-size: 14px;
    color: #78350f;
    line-height: 1.6;
}

.tier-limit-warning svg {
    vertical-align: -2px;
    margin-right: 6px;
    color: #f59e0b;
}

/* Tier Details Content (for dynamic showing/hiding) */
.tier-details-content {
    transition: all 0.2s ease-in-out;
}

/* Form Help Text */
.form-help {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
    margin-bottom: 0;
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
}

.checkbox-label .form-checkbox {
    margin-right: 8px;
    cursor: pointer;
}

.checkbox-label span {
    user-select: none;
}

/* Staff Dashboard Tier Tab Adjustments */
.staff-tabs .staff-tab {
    padding: 12px 20px;
    transition: all 0.2s;
}

.staff-tabs .staff-tab:hover {
    background-color: #f3f4f6;
}

.staff-tabs .staff-tab.active {
    border-bottom: 3px solid #3b82f6;
    color: #3b82f6;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tiers-table {
        font-size: 12px;
    }
    
    .tiers-table th,
    .tiers-table td {
        padding: 8px;
    }
    
    .tier-name-badge {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .user-info-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .user-info-row .value {
        margin-top: 4px;
    }
}

/* Additional styles for tier limit modal content */
.modal-limit-warning .limit-message,
.modal-limit-warning .tier-info-box,
.modal-limit-warning .upgrade-benefits,
.modal-limit-warning .modal-info {
    margin: 16px 20px;
}

.modal-limit-warning .limit-message:first-of-type {
    margin-top: 20px;
}

.modal-limit-warning .modal-actions {
    margin-top: 24px;
}
/* ============================================================================
   SUBSCRIPTION & BILLING STYLES
   ============================================================================ */

/* Subscription Plans Page */
.subscription-plans-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.plans-header {
    text-align: center;
    margin-bottom: 48px;
}

.plans-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.plans-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
}

.current-plan-notice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e7f3ff;
    color: #004085;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
}

.current-plan-notice svg {
    flex-shrink: 0;
}

/* Plans Grid - Flexbox for centered alignment */
.plans-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
    box-sizing: border-box;
}

.plan-card,
.pricing-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

/* For tablets: 2 columns */
@media (min-width: 768px) {
    .plan-card,
    .pricing-card {
        width: calc(50% - 10px);
        max-width: 340px;
    }
}

/* For larger screens: 4 columns - must fit all 4 in one row */
@media (min-width: 1100px) {
    .plans-grid {
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .plan-card,
    .pricing-card {
        flex: 1 1 0;
        width: auto;
        min-width: 240px;
        max-width: 300px;
    }
}

/* For mobile: 1 column full width */
@media (max-width: 767px) {
    .plan-card,
    .pricing-card {
        max-width: 100%;
    }
}

.plan-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0,123,255,0.15);
    transform: translateY(-4px);
}

.plan-card.popular {
    border-color: #007bff;
    box-shadow: 0 4px 16px rgba(0,123,255,0.2);
}

.plan-card.current {
    border-color: #28a745;
    background: #f8fff9;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.test-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #333;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.plan-header {
    margin-bottom: 24px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.plan-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.plan-pricing {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
    min-height: 100px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

/* Billing cycle visibility - default to monthly */
.monthly-price {
    display: block;
}

.annual-price {
    display: none;
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    color: #333;
}

.price-period {
    font-size: 16px;
    color: #666;
}

.price-annual {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.savings-badge {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

.plan-features {
    flex: 1;
    margin-bottom: 24px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: #555;
}

.plan-features li svg {
    flex-shrink: 0;
    color: #28a745;
    margin-top: 2px;
}

.plan-action {
    margin-top: auto;
}

.plan-action .btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
}

.btn-danger-outline {
    background: white;
    border: 2px solid #dc3545;
    color: #dc3545;
}

.btn-danger-outline:hover {
    background: #dc3545;
    color: white;
}

.btn-success-outline {
    background: white;
    border: 2px solid #28a745;
    color: #28a745;
}

.btn-success-outline:hover {
    background: #28a745;
    color: white;
}

/* Subscription Detail Page */
.subscription-detail-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

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

.subscription-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.subscription-card,
.billing-history-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 32px;
}

.subscription-card h2,
.billing-history-card h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
}

.subscription-info {
    margin-bottom: 32px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #555;
}

.info-value {
    text-align: right;
    color: #333;
}

.subscription-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.subscription-actions .btn {
    flex: 1;
    min-width: 180px;
}

.no-subscription {
    text-align: center;
    padding: 60px 20px;
}

.no-subscription p {
    font-size: 18px;
    color: #666;
    margin: 20px 0;
}

/* Invoice Table */
.invoice-table-wrapper {
    overflow-x: auto;
}

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

.invoice-table th,
.invoice-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.invoice-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #555;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.invoice-table td code {
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #e83e8c;
}

.invoice-table .btn-link {
    color: #007bff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

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

/* Badges */
.badge-success {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-warning {
    display: inline-block;
    background: #ffc107;
    color: #333;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-info {
    display: inline-block;
    background: #17a2b8;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-secondary {
    display: inline-block;
    background: #6c757d;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Success Message */
.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.success-message p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card {
        margin-bottom: 24px;
    }
    
    .subscription-actions {
        flex-direction: column;
    }
    
    .subscription-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .info-value {
        text-align: left;
    }
    
    .invoice-table {
        font-size: 13px;
    }
    
    .invoice-table th,
    .invoice-table td {
        padding: 10px;
    }
}

/* Staff Pricing Management */
.pricing-management-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

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

.pricing-table th,
.pricing-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #555;
    font-size: 13px;
}

.pricing-table .actions {
    display: flex;
    gap: 8px;
}

.edit-plan-form {
    display: grid;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #555;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.form-help {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Billing Cycle Modal */
#billing-cycle-modal .modal-content {
    max-width: 400px;
}

#billing-cycle-modal .modal-body {
    padding: 24px;
}

#billing-cycle-modal .btn {
    justify-content: center;
}


/* Modal close button (alternate class name) */
.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #333;
}

/* Modal header h3 styling */
.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

/* Ensure modal overlay centers content */
.modal-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal content proper positioning */
.modal-content {
    position: relative;
    margin: auto;
}

/* Form styling inside modals */
.modal-content .modal-actions {
    padding: 0 20px 20px 20px;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
    margin-top: 20px;
}

/* Modal info boxes */
.modal-info {
    font-size: 14px;
    line-height: 1.5;
}
