/* My Account Page Styles */

.profile-card {
    border-radius: 12px;
    overflow: hidden;
}

.profile-card .form-control {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
}

.profile-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 153, 51, 0.15);
}

.input-group-text {
    border-color: #dee2e6;
    background-color: #f8f9fa;
}

.input-group .form-control:focus {
    z-index: 3;
}

/* Read-only mobile field styling */
input[readonly] {
    background-color: #f8f9fa !important;
    color: #6c757d;
}

/* Button hover effects */
.btn-primary-custom:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 153, 51, 0.2);
}

/* Section Dividers */
hr {
    opacity: 0.1;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .profile-card .card-body {
        padding: 1.5rem !important;
    }
}
