.profile-page {
    padding: 60px 0;
    background: #f7f8fa;
    min-height: calc(100vh - 150px);
}

.profile-header {
    margin-bottom: 30px;
}

.profile-header h1 {
    margin-bottom: 8px;
    font-size: 32px;
    font-weight: 700;
}

.profile-header p {
    color: #6b7280;
}

.profile-form {
    max-width: 700px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    font-size: 15px;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: #6b7280;
}

.category-options {
    display: flex;
    gap: 25px;
}

.category-options label {
    font-weight: 400;
    cursor: pointer;
}

.category-options input {
    margin-right: 6px;
}

.btn-primary {
    border: none;
    padding: 12px 24px;
    border-radius: 7px;
    cursor: pointer;
    font-weight: 600;
}

#profile-message {
    margin-bottom: 20px;
}

@media (max-width: 768px) {

    .profile-page {
        padding: 35px 15px;
    }

    .profile-form {
        padding: 25px 20px;
    }

    .profile-header h1 {
        font-size: 27px;
    }

    .category-options {
        flex-direction: column;
        gap: 12px;
    }

}