    .card:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

    .card-title {
        font-weight: 600;
        color: var(--dark);
    }

    .network-select {
        border-radius: 12px;
        padding: 0.75rem 1rem;
        border: 1px solid #dee2e6;
        background-color: white;
        transition: all 0.2s ease;
    }

    .network-select:focus {
        box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.2);
    }

    .network-option {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .network-icon {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .input-group {
        border-radius: 12px;
        overflow: hidden;
    }

    .input-group-text {
        background-color: #f8f9fa;
        border-right: none;
    }

    .form-control {
        border-left: none;
        padding: 0.75rem 1rem;
    }

    .form-control:focus {
        box-shadow: none;
        border-color: #dee2e6;
    }

    .amount-preset {
        display: inline-block;
        border: 1px solid #dee2e6;
        border-radius: 10px;
        padding: 8px 16px;
        margin-right: 8px;
        margin-bottom: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
        font-weight: 500;
    }


    .amount-preset.active {
        color: white;
        background: gray;
    }


    .quick-links {
        display: flex;
        gap: 12px;
        margin-top: 16px;
    }

    .quick-link {
        flex: 1;
        padding: 20px;
        text-align: center;
        border-radius: 16px;
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
        transition: all 0.3s ease;
        background-color: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .quick-link:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        color: var(--dark);
    }

    .quick-link.upload {
        background-color: #f8f9fa;
    }

    .quick-link.history {
        background-color: #fff8ee;
        color: #995400;
    }

    .quick-link i {
        display: block;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .quick-link.history i {
        color: #ff9500;
    }

    .info-card {
        background-color: #f8f9fa;
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 16px;
    }

    .info-card:last-child {
        margin-bottom: 0;
    }

    .network-icon.mtn {
        background-color: #ffd60a;
    }

    .network-icon.etisalat {
        background-color: #ef476f;
        color: white;
    }

    .network-icon.airtel {
        background-color: #e63946;
        color: white;
    }

    .network-icon.glo {
        background-color: #06d6a0;
        color: white;
    }

    .form-check-input:checked {}

    @media (max-width: 768px) {
        .content-wrapper {
            padding: 1rem;
        }

        .quick-link {
            padding: 15px 10px;
        }
    }

    .quick-links-secondary {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .quick-links-secondary .quick-link {
        flex: 1;
        text-align: center;
        border-radius: 16px;
        margin: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        background-color: white;
        transition: all 0.3s ease;
        font-weight: 500;
        padding: 20px;
    }

    .quick-links-secondary .quick-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        color: var(--dark);
    }

    @media (max-width: 768px) {
        .quick-links-secondary .quick-link {
            padding: 15px 10px;
        }
    }




        .bootbox.modal .modal-dialog {
        max-width: 400px;
    }

    #pin-input:focus {
        border-color: #0d6efd !important;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    }

    .bootbox .modal-content {
        border-radius: 1rem;
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .bootbox .modal-header {
        border-bottom: none;
        padding-bottom: 0;
    }

    .bootbox .modal-footer {
        border-top: none;
        padding-top: 0;
    }

    .btn {
        border-radius: 0.75rem;
        padding: 10px 16px;
    }

    .fs-7 {
        font-size: 0.9rem;
    }