* { font-family: 'Poppins', sans-serif; }
body { background: #f5f5f5; margin: 0; padding-bottom: 70px; }
.splash-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #FF9933, #FFFFFF, #138808);
    z-index: 9999; display: flex; flex-direction: column;
    justify-content: center; align-items: center; transition: opacity 0.5s;
}
.tricolor-wave { display: flex; width: 80%; height: 8px; margin-bottom: 30px; }
.wave-saffron { flex: 1; background: #FF9933; animation: wave 1s infinite; }
.wave-white { flex: 1; background: white; animation: wave 1.2s infinite; }
.wave-green { flex: 1; background: #138808; animation: wave 0.8s infinite; }
@keyframes wave { 0%,100%{ transform: scaleY(1); } 50%{ transform: scaleY(1.5); } }
.ashoka-chakra-spinner .chakra {
    width: 60px; height: 60px; border: 5px solid #000080; border-top: 5px solid #FF9933;
    border-radius: 50%; animation: spin 1s linear infinite;
}
@keyframes spin { 0%{ transform: rotate(0deg); } 100%{ transform: rotate(360deg); } }
.flying-rupee { font-size: 40px; position: relative; animation: fly 1s ease-out; }
@keyframes fly { 0%{ transform: translateY(0); opacity: 1; } 100%{ transform: translateY(-100px); opacity: 0; } }
.app-top-bar { background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0; background: white;
    display: flex; justify-content: space-around; padding: 8px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1); z-index: 1000;
}
.nav-item { display: flex; flex-direction: column; align-items: center; color: #6c757d; text-decoration: none; font-size: 12px; transition: 0.2s; }
.nav-item.active { color: #FF9933; font-weight: bold; }
.nav-item i { font-size: 24px; }
.btn-saffron { background: linear-gradient(135deg, #FF9933, #138808); color: white; border: none; padding: 12px; border-radius: 12px; font-weight: 600; }
.card { border-radius: 20px; border: none; box-shadow: 0 4px 12px rgba(0,0,0,0.05); margin-bottom: 16px; }
.input-group-custom input, select, textarea { min-height: 40px; border-radius: 12px !important; }
.item-row-card { background: #f8f9fa; padding: 12px; border-radius: 16px; margin-bottom: 12px; transition: all 0.3s; }
.btn-outline-saffron { border-color: #FF9933; color: #FF9933; }
.btn-outline-saffron:hover { background: #FF9933; color: white; }
/* Transaction Details Modal Styling */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
}
.modal-header {
    background: linear-gradient(135deg, #FF9933, #138808);
    color: white;
    border: none;
}

.info-group {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.info-group small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-group p {
    margin: 5px 0 0 0;
    font-size: 14px;
}

#transactionDetailModal .table th,
#transactionDetailModal .table td {
    vertical-align: middle;
    font-size: 13px;
}

#transactionDetailModal .alert {
    border-radius: 12px;
    border-left: 4px solid #FF9933;
}

/* Print styles */
@media print {
    .btn-group,
    .modal-footer,
    .btn-close,
    .dropdown,
    .bottom-nav,
    .app-top-bar {
        display: none !important;
    }
    
    .modal-dialog {
        max-width: 100%;
        margin: 0;
    }
    
    .modal-content {
        box-shadow: none;
    }
    
    body {
        padding: 0;
        margin: 0;
    }
}