@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
#total-amount{
    font-size: 2rem !important;
}
#change-amount{
    font-size: 1.5rem !important;
}
.fw-bold{
    font-weight: 700 !important;
}
.fw-medium{
    font-weight: 500 !important;
}
.payment-container {
    max-width: 480px;
    margin: 0 auto;
}

.payment-container p, .payment-container span, .payment-container label, .payment-container div, .payment-container button, .payment-container input, .payment-container select{
    font-family: "Inter", "Roboto" !important;
}

.payment-card {
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.payment-header {
    background: white;
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 2rem;
}

.payment-body {
    background: white;
    border-radius: 0 0 1.5rem 1.5rem;
    padding: 2rem;
}

.kiosk-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: #f9fafb;
}

.bill-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: #f3f4f6;
}

#bills-container .btn{
    height: 98.6px !important;
}

.status-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-weight: 500;
    font-style: italic;
}

.status-paid { background-color: #dcfce7; color: #166534; }
.status-partial { background-color: #fed7aa; color: #9a3412; }
.status-current { background-color: #dbeafe; color: #1e40af; }
.status-unpaid { background-color: #fecaca; color: #991b1b; }
.status-upcoming { background-color: #f3f4f6; color: #6b7280; }

.cash-input {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem;
    border-radius: 0.75rem;
}

.quick-amount-btn {
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-weight: 500;
    font-size: 1.2rem !important;
}

.btn-success-custom {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border: none;
    border-radius: 0.75rem;
    padding: 1rem;
    font-weight: 600;
    color: white;
}

.btn-success-custom:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    color: white;
}

.change-display {
    background-color: #fef3c7;
    border-radius: 0.75rem;
    padding: 1rem;
}

.collapse-icon {
    transition: transform 0.3s ease;
}

.collapsed .collapse-icon {
    transform: rotate(-90deg);
}

/* Bootstrap 4 specific adjustments */
.bg-opacity-10 {
    background-color: rgba(34, 197, 94, 0.1) !important;
}

.fw-bold { font-weight: 700 !important; }
.fw-medium { font-weight: 500 !important; }

/* Bootstrap 4 form-select replacement */
.form-select {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-select-sm {
    height: calc(1.5em + .5rem + 2px);
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    font-size: .875rem;
    line-height: 1.5;
}

.rounded{
    border-radius: 0.5rem !important;
}

.btn-large {
    min-height: 57.6px !important;
}

#process-payment-btn{
    height: 50px !important;
}

div.small{
    font-size: 0.85rem !important;
}
.custom-control-input:disabled ~ .custom-control-label::before{
    opacity: 0.25;
}

.custom-amount-input, .cash-input{
    text-align: right;
}