.payment-method-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.payment-method-table {
    margin-bottom: 1.5rem;
}
.payment-method-container {
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: center;
}
.table th {
    background-color: #42b64b;
    color: white;
    font-weight: 600;
    padding: 0.75rem;
}
.table td {
    vertical-align: middle;
    padding: 0.75rem;
}
.table tr:nth-child(even) td {
    background-color: #42b64b;
    color: white;
}
.payment-method-icon {
    max-width: 80px;
    height: auto;
    margin-right: 0.5rem;
    vertical-align: middle;
}
.payment-method-account-no {
    max-width: 150px;
    word-wrap: break-word;
}
.payment-method-info {
    font-size: 1rem;
    font-weight: 500;
    color: #343a40;
    margin-bottom: 0.75rem;
}
.btn-primary {
    background-color: #42b64b;
    border-color: #42b64b;
}
.btn-primary:hover {
    background-color: #43a64b;
    border-color: #43a64b;
}
@media (max-width: 576px) {
    .payment-method-icon {
        max-width: 50px;
    }
    .payment-method-account-no {
        max-width: 100px;
    }
    .payment-method-card {
        padding: 1rem;
    }
    .table {
        font-size: 0.875rem;
    }
}
/* Form styling for PDF */
.form-section {
    position: relative;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: auto;
    background-color: #fff;
}
.form-section label {
    display: block;
    color: #000000c4;
    font-size: medium;
    margin-bottom: 5px;
}
.form-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('assets/images/United College Logo Png.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.1;
    z-index: 0;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.form-section * { position: relative; z-index: 1; }
.form-title { text-align: center; margin-bottom: 30px; }
.form-control, .form-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
/* .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
} */
.download-pdf-md-6-md-6 { width: 50%; padding: 0 15px; }
.download-pdf-md-4 { width: 33.33%; padding: 0 15px; }
.download-pdf-md-3 { width: 25%; padding: 0 15px; }
h5 { margin-top: 20px; margin-bottom: 10px; }
.hidden { display: none; }