/* 
 * Styles for BNB Alumni Membership Dashboard
 */

.bnb-alumni-dashboard {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #333;
    line-height: 1.6;
}

.bnb-card {
    background: #fff;
    border: 2px solid #5ab0cc;
    border-radius: 12px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.bnb-card-header {
    background-color: #5ab0cc;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
}

.bnb-card-header h2 {
    margin: 0;
    font-size: 1.4em;
    color: #fff;
    font-weight: 600;
}

.bnb-card-body {
    padding: 20px 25px;
}

/* Typography highlighting */
.bnb-highlight-text {
    color: #5ab0cc;
    font-style: italic;
    font-weight: 600;
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 15px;
}

.bnb-highlight-blue {
    color: #2b7a94;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
}

.bnb-details-title {
    color: #5ab0cc;
    font-style: italic;
    text-decoration: underline;
    margin-top: 25px;
}

.bnb-bank-details {
    list-style: none;
    padding: 0;
    color: #2b7a94;
}

.bnb-bank-details li {
    margin-bottom: 8px;
}

/* Status details */
.bnb-status-details p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.bnb-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: bold;
    color: #fff;
}
.bnb-badge-active { background-color: #28a745; }
.bnb-badge-inactive { background-color: #dc3545; }
.bnb-badge-pending-review { background-color: #ffc107; color: #333; }

/* QR Placeholder */
.bnb-card-qr {
    border: 4px solid #5ab0cc;
    border-radius: 15px;
}
.bnb-card-qr h3 {
    text-align: center;
    color: #2b7a94;
    margin-top: 0;
}
.bnb-qr-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: #f1f1f1;
    border: 2px dashed #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #777;
    border-radius: 8px;
}
.bnb-qr-placeholder p {
    font-size: 0.8em;
    margin-top: 10px;
}

/* Form Styles */
.bnb-alumni-form .bnb-form-group {
    margin-bottom: 15px;
}
.bnb-alumni-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #444;
}
.bnb-alumni-form input[type="text"],
.bnb-alumni-form input[type="number"],
.bnb-alumni-form input[type="date"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
}
.bnb-btn {
    background-color: #5ab0cc;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}
.bnb-btn:hover {
    background-color: #438f9c;
}

/* Alerts */
.bnb-alert {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: bold;
}
.bnb-alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.bnb-alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
