/**
 * ITA Massnahmen Online Frontend Styles
 */

.ita-massnahmen-token-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.ita-massnahmen-token-form h2 {
    color: #dc2626;
    margin-bottom: 15px;
}

.ita-massnahmen-error {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: #fee2e2;
    border-left: 4px solid #dc2626;
    border-radius: 4px;
}

.ita-massnahmen-error p {
    margin: 0;
    color: #991b1b;
}

.ita-celebration {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    font-weight: bold;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: white;
    padding: 30px 50px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 10000;
    text-align: center;
}

.completed-animation {
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .ita-massnahmen-katalog {
        padding: 10px;
    }

    .ita-massnahmen-table-wrapper {
        overflow-x: auto;
    }

    .ita-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ita-priority-stats {
        grid-template-columns: 1fr;
    }
}
