/* PitStop Assinatura de Cestas - Frontend Styles */

:root {
    --pitstop-green: #28a745;
    --pitstop-green-dark: #218838;
    --pitstop-secondary: #20c997;
}

.pitstop-cestas-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Loading State */
.pitstop-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 9999;
}

.pitstop-loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--pitstop-green);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Tables */
@media (max-width: 768px) {
    .subscription-items ul {
        grid-template-columns: 1fr;
    }
}
