/* Estilos para o design moderno */
.btn-pill {
    border-radius: 50rem !important;
    padding: 0.375rem 1rem !important;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.sticky-sidebar {
    position: sticky;
    top: 20px;
}

.selected-numbers-preview {
    min-height: 60px;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.selected-numbers-preview .placeholder-text {
    color: #6c757d;
    font-style: italic;
}

.selected-numbers-display {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-height: 150px;
    overflow-y: auto;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
}

.modal-quotas-grid-container {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
}

.modal-quotas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
    gap: 8px;
}

.quota-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.quota-number:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.quota-number.selected {
    background: linear-gradient(135deg, #6f42c1, #8a63d2);
    color: white;
    border-color: #6f42c1;
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

.quota-number.sold {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
    cursor: not-allowed;
    opacity: 0.7;
}

.quota-number.available {
    background-color: #f8f9fa;
    cursor: pointer;
}

.quota-number.recommended {
    border-color: #ffc107;
    background-color: #fff3cd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-quotas-grid {
        grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
        gap: 6px;
    }
    
    .quota-number {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
    
    .sticky-sidebar {
        position: static;
    }
}