/* Stili generali */
.box-cultura-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Stili form di attivazione */
.activation-section {
    max-width: 600px;
    margin: 30px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

/* Sezione gettoni */
.tokens-section {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tokens-count {
    font-size: 24px;
    color: #333;
    margin: 20px 0;
}

.tokens-count strong {
    color: #2271b1;
    font-size: 32px;
}

/* Sezione eventi */
.events-section {
    margin-top: 40px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.event-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 18px;
}

.event-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Bottoni */
.button {
    background: #2271b1;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
    width: 100%;
}

.button:hover {
    background: #135e96;
}

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

/* Messaggi */
#activation-message {
    margin-top: 20px;
}

.notice {
    padding: 15px;
    border-radius: 4px;
    margin: 10px 0;
}

.notice-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notice-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .tokens-count {
        font-size: 20px;
    }
    
    .tokens-count strong {
        font-size: 28px;
    }
}