﻿/* Card container for account pages */
.card {
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

/* Light blue header section */
.bg-primary-subtle {
    background-color: #e7f1ff;
    padding: 1rem 1.5rem;
}

/* Primary text headings */
.text-primary h5,
.text-primary h6 {
    margin: 0;
    font-weight: 600;
}

.avatar-title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #f5f5f5;
}

/* Form input styles */
.form-control {
    border-radius: 6px;
    transition: border-color 0.2s ease-in-out;
}

    .form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
    }

/* Success alert */
.alert-success {
    background-color: #d1f7e8;
    color: #0f5132;
    border-color: #badbcc;
}

/* Buttons */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    border-radius: 6px;
}

    .btn-primary:hover {
        background-color: #0b5ed7;
        border-color: #0a58ca;
    }

/* Link styling */
.text-primary {
    color: #0d6efd !important;
}

.fw-medium {
    font-weight: 500;
}

/* Footer text styling */
.mt-5.text-center p {
    margin-bottom: 0.25rem;
    color: #6c757d;
    font-size: 14px;
}
