.accounting-invoice-card {
    overflow: visible;
}

.accounting-invoice-section {
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.accounting-invoice-section-title {
    font-weight: 900;
    color: #0f172a;
    font-size: 1rem;
}

.accounting-student-selector {
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    margin-bottom: 16px;
}

.accounting-check-dropdown {
    position: relative;
}

.accounting-check-dropdown > .form-select {
    min-height: 45px;
    border-radius: 15px;
    background-color: #fff;
    cursor: pointer;
}

.accounting-check-menu {
    position: absolute;
    z-index: 50;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    max-height: 260px;
    overflow: auto;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    padding: 8px;
}

.accounting-check-menu-lg {
    max-height: 340px;
}

.accounting-check-dropdown.is-open .accounting-check-menu {
    display: block;
}

.accounting-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 13px;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    transition: 0.15s ease;
}

.accounting-option:hover {
    background: #fff7ed;
    color: #f97316;
}

.accounting-option input {
    width: 16px;
    height: 16px;
    accent-color: #f97316;
}

.accounting-search {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 10px 12px;
    margin-bottom: 8px;
    outline: none;
}

.accounting-search:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.accounting-soft-badge {
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 900;
    font-size: 0.78rem;
    color: #0b2344;
    background: #eaf0f8;
    border: 1px solid #d7dee9;
}

.accounting-soft-badge.orange {
    color: #f97316;
    background: #fff7ed;
    border-color: #fed7aa;
}

.accounting-pdf-info {
    border: 1px dashed #fed7aa;
    border-radius: 18px;
    padding: 14px;
    display: flex;
    gap: 12px;
    background: #fff7ed;
    color: #0f172a;
}

.accounting-pdf-info i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: #f97316;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex: 0 0 auto;
}

.accounting-pdf-info strong,
.accounting-pdf-info span {
    display: block;
}

.accounting-pdf-info span {
    color: #64748b;
    font-size: 0.86rem;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .accounting-check-menu {
        position: static;
        margin-top: 8px;
    }
}
