/**
 * SENiTy Creator Dashboard Styles
 */

.senity-creator-dashboard {
    max-width: 1200px;
}

.senity-creator-dashboard h2 {
    margin-bottom: 30px;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.senity-creator-dashboard h3 {
    margin-bottom: 20px;
}

/* Dashboard sections */
.senity-dashboard-section {
    margin-bottom: 40px;
}

/* Empty state */
.senity-empty-state {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.senity-empty-state h3 {
    margin-top: 0;
}

/* Coupon card */
.senity-coupon-card {
    background: #000;
    color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.senity-coupon-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.senity-coupon-code .code {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

.senity-copy-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.senity-copy-btn:hover {
    background: #f0f0f0;
}

.senity-coupon-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    color: #fff !important;
}

.senity-coupon-info p {
    margin: 0;
    color: #fff !important;
}

.senity-coupon-info strong {
    color: #fff !important;
}

.senity-small-text {
    font-size: 13px;
    opacity: 0.8;
    color: #fff;
}

/* Stats grid */
.senity-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.senity-stat-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}

.senity-stat-card .stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.senity-stat-card .stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.senity-stat-highlight {
    background: #000;
    color: #fff;
    border-color: #000;
}

.senity-stat-highlight .stat-value {
    color: #fff;
}

.senity-stat-highlight .stat-label {
    color: #ccc;
}

/* Stats table */
.senity-stats-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e5e5e5;
}

.senity-stats-table th {
    background: #f8f9fa;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.senity-stats-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e5e5e5;
}

.senity-stats-table tbody tr:hover {
    background: #f8f9fa;
}

.senity-stats-table tbody tr:last-child td {
    border-bottom: none;
}

/* Privacy notice */
.senity-privacy-notice {
    background: #e7f3ff;
    border-left: 4px solid #2196f3;
    padding: 15px;
    margin-top: 30px;
}

.senity-privacy-notice p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .senity-coupon-code {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .senity-coupon-code .code {
        font-size: 20px;
    }

    .senity-copy-btn {
        width: 100%;
    }

    .senity-stats-grid {
        grid-template-columns: 1fr;
    }

    .senity-stats-table {
        font-size: 14px;
    }

    .senity-stats-table th,
    .senity-stats-table td {
        padding: 10px;
    }
}
