/**
 * IOX Stage Accounts - Styles
 *
 * TODO: Migrate and modernize CSS from:
 * - TessituraAccount.php inline styles
 * - BIG theme account styles
 * - Create responsive, accessible account interface
 */

/* Account Dashboard Grid */
.big-acc {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.big-acc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.big-acc-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.big-acc-full-width {
    grid-column: 1 / -1;
}

/* Account Cards */
.big-acc-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.big-acc-card-heading {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

/* Forms */
.big-co-field {
    margin-bottom: 1rem;
}

.big-co-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.big-co-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.big-co-button {
    background: #007bff;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

.big-co-button:hover {
    background: #0056b3;
}

.big-co-button.disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .big-acc-grid {
        grid-template-columns: 1fr;
    }
}

/* TODO: Add more styles for:
 * - Login/register forms
 * - Purchase history table
 * - Subscription management
 * - Gift card forms
 * - Error/success messages
 */
