/* 
   ORION PREMIUM PROFILE STYLES
*/

.profile-modal-container {
    text-align: center;
    padding: 20px 0;
}

.profile-avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    cursor: pointer;
}

.profile-avatar-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    border: 4px solid white;
    overflow: hidden;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
}

.profile-avatar-wrapper:hover .profile-avatar-circle {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.profile-avatar-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.profile-avatar-wrapper:hover .profile-avatar-overlay {
    background: #1d4ed8;
    transform: scale(1.1);
}

.profile-field-group {
    text-align: left;
}

.profile-field-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.2s ease;
}

.profile-input:focus {
    border-color: #6366f1;
    background: #f8fafc;
    outline: none;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.profile-save-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.profile-save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.4);
    filter: brightness(1.1);
}

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

.profile-input:disabled {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.8;
}

/* Dark Mode */
body[data-theme="dark"] .profile-avatar-circle {
    border-color: #1e293b;
}

body[data-theme="dark"] .profile-avatar-overlay {
    border-color: #1e293b;
}

body[data-theme="dark"] .profile-input {
    background: #1e293b;
    border-color: #334155;
    color: #f1f5f9;
}

body[data-theme="dark"] .profile-input:focus {
    background: #0f172a;
    border-color: #6366f1;
}

body[data-theme="dark"] .profile-input:disabled {
    background: rgba(30, 41, 59, 0.5);
    border-color: #334155;
    color: #64748b;
}

/* Password Toggle Styles */
.password-input-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.password-toggle-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.2s;
    z-index: 10;
    font-size: 0.9rem;
}

.password-toggle-icon:hover {
    color: #6366f1;
}
