/**
 * Tournament in a Box - Profile Page Styles
 * /files/php/CSS/profile.css
 */

/* User info header styling */
.user-info-header {
    text-align: center;
    padding: 10px 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Form sections spacing */
.profile-section {
    margin-bottom: 0;
}

.profile-section + .profile-section {
    border-top: 1px solid #e0e0e0;
}

/* Disabled input styling */
.filter-input-disabled {
    background: #f5f5f5;
    color: #888;
    cursor: not-allowed;
}

/* Password requirements */
.password-requirements {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.password-requirements h4 {
    margin: 0 0 10px 0;
    font-size: 0.95rem;
    color: #555;
}

.password-requirements ul {
    margin: 0;
    padding-left: 20px;
}

.password-requirements li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.password-requirements li.valid {
    color: #28a745;
}

.password-requirements li.valid::marker {
    content: "\2713  ";
}

/* Password strength indicator */
.password-strength {
    height: 5px;
    border-radius: 3px;
    margin-top: 8px;
    background: #e0e0e0;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    transition: all 0.3s ease;
    width: 0;
}

.strength-weak { 
    background: #dc3545; 
    width: 25%; 
}

.strength-fair { 
    background: #ffc107; 
    width: 50%; 
}

.strength-good { 
    background: #17a2b8; 
    width: 75%; 
}

.strength-strong { 
    background: #28a745; 
    width: 100%; 
}

/* Event link styling */
.event-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.event-link:hover {
    text-decoration: underline;
    color: #764ba2;
}

/* DataTable header for promoter events */
#promoterEventsTable thead th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

#promoterEventsTable tbody tr:hover {
    background: #f0f4ff;
}