/* Profile Card */
.profile-card {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.profile-avatar {
    font-size: 5rem;
    color: #ffa502;
}

.profile-info h2 {
    margin: 0 0 5px 0;
    font-size: 1.8rem;
}

.profile-info .email {
    color: #aaa;
    margin-bottom: 15px;
}

/* Profile Stats */
.profile-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ffa502;
}

.stat-label {
    color: #aaa;
    font-size: 0.9rem;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #aaa;
}

.form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    width: 100%;
}

.form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #ffa502;
    box-shadow: none;
    color: #fff;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .profile-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        padding: 15px;
        background: rgba(255,255,255,0.05);
        border-radius: 4px;
    }
} 

/* Avatar Upload */
.avatar-upload {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.avatar-preview {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-preview i {
    font-size: 5rem;
    color: #ffa502;
}

.avatar-edit input[type="file"] {
    display: none;
}

/* Form Layout */
.form-row {
    display: flex;
    margin: 0 -15px;
    flex-wrap: wrap;
}

.col-md-6 {
    flex: 0 0 50%;
    padding: 0 15px;
}

/* Input Fields */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #ddd;
    font-weight: 500;
}

.form-group label i {
    color: #ffa502;
}

.form-control {
    background: rgba(255,255,255,0.08) !important;
    border: 2px solid rgba(255,255,255,0.1) !important;
    color: #fff;
    padding: 12px 15px;
    border-radius: 6px;
    width: 100%;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255,255,255,0.12);
    border-color: #ffa502;
    box-shadow: 0 0 0 3px rgba(255, 165, 2, 0.2);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
    }
    
    .form-row {
        margin: 0;
    }
    
    .col-md-6 {
        padding: 0;
    }
} 