/* Profile Page Styles */
.profile-container {
    max-width: 1000px;
    margin: 80px auto 40px; 
    padding: 0 20px;
}

.profile-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px; 
}

#profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #e8491d;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

#profile-avatar:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    border-color: #ff7043;  
}

#profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-info h2 {
    margin-bottom: 10px;
    color: #35424a;
    font-size: 24px;
}

.profile-info p {
    color: #666;
    font-size: 14px;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.profile-stats, 
.profile-settings {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.profile-stats h3,
.profile-settings h3 {
    color: #35424a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f4f4f4;
}

.profile-stats ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.profile-stats li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.profile-stats li:last-child {
    border-bottom: none;
}

.profile-stats li span {
    font-weight: 600;
    color: #e8491d;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #35424a;
    font-weight: 600;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #e8491d;
    box-shadow: 0 0 0 2px rgba(232, 73, 29, 0.1);
}

.file-upload-container {
    position: relative;
    width: 100%;
    min-height: 150px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    background-color: #f8f8f8;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.file-upload-container:hover,
.file-upload-container.dragover {
    border-color: #e8491d;
    background-color: rgba(232, 73, 29, 0.05);
}

.upload-icon {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.file-upload-container:hover .upload-icon {
    color: #e8491d;
}

.upload-hint {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

#supported-formats {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

#avatar-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .profile-container {
        margin: 60px auto 20px;
        padding: 0 15px;
    }
    
    .profile-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
    
    #profile-avatar {
        width: 120px;
        height: 120px;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .profile-stats,
    .profile-settings {
        padding: 20px;
    }
    
    .form-group input {
        padding: 10px;
        font-size: 16px;
    }
    
    .file-upload-container {
        min-height: 120px;
        padding: 15px;
    }
    
    .upload-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .upload-hint {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    #supported-formats {
        font-size: 11px;
    }
}