/**
 * Creator Profile Page Styles
 * Extracted from inline styles in page-creator-profile.php
 */

/* Layout & Structure */
.creator-profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.creator-two-column {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-top: 20px;
}

.creator-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.creator-main-content {
    min-width: 0;
}

/* Profile Cards */
.creator-profile-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.creator-profile-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* Profile Images */
.creator-avatar-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    display: block;
}

.creator-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.cs-current-image {
    background-color: transparent;
}

/* Information Fields */
.creator-info-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.creator-info-label {
    font-weight: 600;
    color: #666;
    min-width: 120px;
}

.creator-info-value {
    color: #333;
    flex: 1;
}

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

.creator-info-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

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

/* Social Media Links */
.creator-social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 0px;
}

.creator-social-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s;
}

.creator-social-links svg {
    margin-right: 10px;
}

.creator-social-link:hover {
    background: #e0e0e0;
}

/* Submissions Table */
.creator-submissions-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

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

.creator-submissions-table td {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
}

.creator-submissions-table tr:hover {
    background: #f8f9fa;
}

/* Status Badges */
.creator-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.creator-status-pending {
    background: #fff3cd;
    color: #856404;
}

.creator-status-approved {
    background: #d4edda;
    color: #155724;
}

.creator-status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.creator-status-paid {
    background: #d1ecf1;
    color: #0c5460;
}

/* Earnings Display */
.creator-earnings-large {
    font-size: 32px;
    font-weight: bold;
    color: #28a745;
    margin: 10px 0;
}

.creator-earnings-medium {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.creator-earnings-small {
    font-size: 18px;
    color: #666;
}

.creator-earnings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.creator-earnings-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
}

.creator-earnings-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.creator-earnings-amount {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

/* Empty States */
.creator-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.creator-empty-state-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.creator-empty-state-text {
    font-size: 16px;
}

/* Dashboard Widgets */
.creator-widget {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.creator-widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5f5f5;
}

/* Activity Lists */
.creator-activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.creator-activity-item {
    padding: 12px;
    border-left: 3px solid #007bff;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 4px;
}

.creator-activity-date {
    font-size: 12px;
    color: #999;
    display: block;
    margin-top: 5px;
}

/* Stats Grid */
.creator-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.creator-stat-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.creator-stat-value {
    font-size: 32px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.creator-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Action Buttons */
.creator-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

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

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

.creator-btn-secondary:hover {
    background: #545b62;
}

.creator-btn-success {
    background: #28a745;
    color: white;
}

.creator-btn-success:hover {
    background: #1e7e34;
}

/* Responsive Design */
@media (max-width: 768px) {
    .creator-two-column {
        grid-template-columns: 1fr;
    }

    .creator-sidebar {
        position: static;
    }

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

    .creator-earnings-grid {
        grid-template-columns: 1fr;
    }
}
