body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.bg-primary {
    background: linear-gradient(135deg, #FF6B6B, #C0392B) !important;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.form-control:focus, .form-select:focus {
    border-color: #FF6B6B;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25);
}

.btn-primary {
    background-color: #C0392B;
    border-color: #C0392B;
}

.btn-primary:hover {
    background-color: #A93226;
    border-color: #A93226;
}

.profile-img-container {
    height: 250px;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-detail-img {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto;
}

.section-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #C0392B;
    font-weight: 600;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 60px;
    background-color: #FF6B6B;
}

.text-center .section-title::after {
    left: calc(50% - 30px);
}

.detail-row {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: #666;
}

.detail-value {
    color: #333;
    font-weight: 600;
}
