/* SafeHaven - Profile Page View-Specific Styles */

/* This file complements Profile.css */
.profile-edit-form {
    max-width: 600px;
    margin: 2rem auto;
}

.profile-form-group {
    margin-bottom: 1.5rem;
}

.profile-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.profile-form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
}

.profile-form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.profile-save-button {
    padding: 0.75rem 2rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.profile-save-button:hover {
    background: #2563eb;
}
