.apply-branch-card {
    position: fixed;
    width: 340px;
    max-width: calc(100vw - 32px);
    background: var(--bg, #F8F4E9);
    border: 1px solid var(--border, #ddd);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 9999;
    animation: abSlideUp 0.25s ease;
}
@keyframes abSlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
.apply-branch-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-light, #eee);
    background: var(--primary, #9E2020);
    border-radius: 8px 8px 0 0;
}
.apply-branch-card-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--serif, serif);
}
.apply-branch-card-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
.apply-branch-card-body {
    padding: 14px;
}
.ab-field {
    margin-bottom: 8px;
}
.ab-field label {
    display: block;
    font-size: 12px;
    color: var(--text, #222);
    margin-bottom: 3px;
    font-weight: 600;
}
