/* apg.css - Only specialized styles that don't conflict with main styles */
.score-display {
    text-align: center;
    margin: 20px 0;
}

.score-value {
    font-size: 3rem;
    font-weight: bold;
    color: #0056b3;
    margin: 10px 0;
}

.score-description {
    color: #666;
    margin-bottom: 20px;
}

.cash-cover-display {
    background-color: #f0f8ff;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    text-align: center;
}

.cover-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0056b3;
    margin: 10px 0;
}

/* Special form styles for APG */
.apg-form-group {
    margin-bottom: 20px;
}

.apg-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.apg-form-group input, 
.apg-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.apg-btn-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}