/* ===== MINIMAL WITHDRAW REQUEST PAGE STYLES ===== */
.content__nav2 {
    background-color: #ffffff;
    height: 50px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1000;
}
/* Base Container - using Bootstrap container-fluid */
.container-fluid {
    padding: 50px 30px 30px 30px;
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* ===== CUSTOM SELECT STYLES ===== */
.type-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    border: none;
  }

  .type-badge.product {
    color: #3B82F6;
    border: 2px solid #3B82F6;
  }

  .type-badge.form {
    color: #10B981;
    border: 2px solid #10B981;
  }
/* ===== WITHDRAW BUTTON STYLES ===== */
.btn-primary {
    background: linear-gradient(119.16deg, #8D4DF3 0%, #0120D4 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(119.16deg, #7a3de0 0%, #011ac0 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(141, 77, 243, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(141, 77, 243, 0.3);
}

/* ===== END WITHDRAW BUTTON STYLES ===== */

/* ===== WITHDRAW CONDITION MODAL ===== */
.modal-header .modal-title {
    font-weight: 700;
}

.modal .bg-light {
    background-color: #f5f7fb !important;
}

.modal .border {
    border-color: #e6e9f2 !important;
}

.modal .fw-bold {
    font-size: 16px;
}

.modal .small {
    font-weight: 600;
}