/* Pro Campaign Styles */

/* Pro Badge */
.pro-badge-container {
    margin-bottom: 0.5rem;
}

.pro-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Form Sections */
.form-section {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-section .section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section .section-title i {
    color: #2563eb;
}

/* Verification Card */
.verification-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.verification-input {
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 8px;
    font-weight: 600;
    padding: 1rem;
}

/* Check Email Card */
.check-email-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.check-email-card .email-icon {
    font-size: 4rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.check-email-card .email-address {
    font-size: 1.1rem;
    color: #1e293b;
}

/* Access Request Card */
.access-request-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

/* Dashboard Styles */
.dashboard-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1rem;
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

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

/* Stat Cards */
.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.stat-icon {
    font-size: 1.5rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.stat-icon.active {
    color: #22c55e;
}

.stat-icon.completed {
    color: #2563eb;
}

.stat-icon.feedback {
    color: #f59e0b;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

/* Section Title */
.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title i {
    color: #2563eb;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px dashed #e2e8f0;
}

.empty-state i {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

/* Campaigns Table */
.campaigns-table-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.campaigns-table {
    margin-bottom: 0;
}

.campaigns-table thead {
    background: #f8fafc;
}

.campaigns-table thead th {
    font-weight: 600;
    color: #475569;
    padding: 1rem;
    border-bottom: 2px solid #e2e8f0;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.campaigns-table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
}

.campaigns-table tbody tr:hover {
    background: #f8fafc;
}

.employee-info strong {
    color: #1e293b;
}

.employee-info small {
    font-size: 0.8rem;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background: #dcfce7;
    color: #166534;
}

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

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

.status-badge.incomplete {
    background: #fee2e2;
    color: #991b1b;
}

.status-badge.discarded,
.status-badge.deleted {
    background: #f1f5f9;
    color: #64748b;
}

/* Response Count */
.response-count {
    font-weight: 600;
    color: #1e293b;
}

/* Campaign Detail Header */
.campaign-detail-header {
    margin-bottom: 1.5rem;
}

.campaign-detail-header .campaign-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

/* Campaign Cards */
.campaign-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.card-header-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.card-header-modern .header-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.card-header-modern h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.card-body-modern {
    padding: 1.5rem;
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
}

/* Status Grid */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.status-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.status-label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-value {
    font-size: 1rem;
    color: #1e293b;
}

/* Feedback Link Container */
.feedback-link-container {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.feedback-link-input {
    flex: 1;
    font-family: monospace;
    font-size: 0.9rem;
    background: #f8fafc;
}

.copy-success {
    color: #22c55e;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.copy-success.hidden {
    display: none;
}

/* Report Link */
.report-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

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

/* Responsive */
@media (max-width: 768px) {
    .dashboard-header {
        padding: 1.5rem;
    }
    
    .dashboard-title {
        font-size: 1.5rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .campaigns-table-container {
        overflow-x: auto;
    }
    
    .campaigns-table {
        min-width: 700px;
    }
    
    .feedback-link-container {
        flex-direction: column;
    }
    
    .feedback-link-input {
        width: 100%;
    }
    
    .details-grid,
    .status-grid {
        grid-template-columns: 1fr;
    }
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline-primary {
    border: 2px solid #2563eb;
    color: #2563eb;
    font-weight: 600;
    border-radius: 8px;
}

.btn-outline-primary:hover {
    background: #2563eb;
    color: white;
}

.btn-outline-secondary {
    border: 1px solid #cbd5e1;
    color: #64748b;
    border-radius: 8px;
}

.btn-outline-secondary:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

/* Employee Info Box */
.employee-info-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-align: center;
}

.employee-info-box p {
    color: #0369a1;
}

.employee-info-box .employee-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0c4a6e;
}

.employee-info-box .employee-email {
    font-size: 0.95rem;
    color: #0369a1;
}

.employee-info-box i {
    margin-right: 0.5rem;
}

/* Step Indicator */
.step-indicator {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Pro Thank You Page */
.pro-thank-you-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.pro-thank-you-card .success-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 1.5rem;
}

.pro-thank-you-card h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
}

.pro-thank-you-card .lead {
    color: #475569;
    font-size: 1.1rem;
}

.pro-thank-you-card .info-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
}

.pro-thank-you-card .info-box i {
    color: #0369a1;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pro-thank-you-card .info-box p {
    color: #0c4a6e;
    font-size: 0.95rem;
}
