/* =========================
   ATM CARD BASE
========================= */
.atm-card {
    background: linear-gradient(135deg, #0a1f44, #1e3a8a, #2563eb);
    border-radius: 20px;
    padding: 20px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

/* Shine animation */
@keyframes shineSwipe {
    0% { left: -120%; }
    50% { left: 120%; }
    100% { left: 120%; }
}

.atm-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    animation: shineSwipe 5s infinite;
}

/* ATM style info card */
.atm-info-card {
    background: linear-gradient(135deg, #0a1f44, #1e3a8a, #2563eb);
    border-radius: 20px;
    padding: 20px 25px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 1rem auto;
}

.atm-info-card h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: #dbeafe;
}

.atm-info-card small {
    color: #a5b4fc;
}

.atm-info-card hr {
    border-color: rgba(219, 234, 254, 0.3);
    margin: 1rem 0;
}

.atm-info-card strong {
    color: #bfdbfe;
}

.atm-info-card .badge.bg-warning {
    background-color: #facc15; /* Use same yellow, but tweak if needed */
    color: #1e293b;
    font-weight: 600;
    padding: 0.3em 0.6em;
    border-radius: 12px;
    font-size: 0.85rem;
}

.atm-info-card .row {
    margin-bottom: 0.5rem;
}

.atm-info-card .col-md-6 {
    padding-left: 0;
    padding-right: 0;
    font-size: 0.95rem;
    color: #dbeafe;
}

/* =========================
   FORM LAYOUT
========================= */
.atm-form {
    margin: auto;
}

.atm-form .form-label {
    color: #c7d2fe;
    font-size: 13px;
    margin-bottom: 4px;
}


/* =========================
   INPUT FIELDS
========================= */
.atm-input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: #ffffff !important;
    padding: 10px 12px;
}

.atm-input:focus {
    background: rgba(255,255,255,0.12);
    border-color: #60a5fa;
    box-shadow: 0 0 8px rgba(96,165,250,0.6);
    color: #ffffff !important;
}


/* =========================
   SELECT (FIXED VERSION)
========================= */
.atm-select {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 10px 40px 10px 12px;
    height: 60px;

    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important; /* 🔥 FIX */

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* focus */
.atm-select:focus {
    background: rgba(255,255,255,0.12) !important;
    border-color: #60a5fa;
    box-shadow: 0 0 8px rgba(96,165,250,0.6);
}

/* Bootstrap override fix */
select.atm-select.form-control {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* placeholder option */
.atm-select option[value=""] {
    color: #9ca3af;
}

/* dropdown options (browser controlled) */
.atm-select option {
    color: #000;
}


/* =========================
   BUTTONS
========================= */
.atm-btn-primary {
    background: #3b82f6;
    border: none;
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
	height: 40px;
}

.atm-btn-dark {
    background: #374151;
    border: none;
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
	height: 40px;
}