/* Stile generale */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

/* Header */
header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Card personalizzate */
.card {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tabella candidati */
.candidate-table th {
    background-color: #f1f5f9;
}

.candidate-table .tag {
    display: inline-block;
    padding: 2px 8px;
    margin: 2px;
    border-radius: 12px;
    font-size: 0.8rem;
    background-color: #e9ecef;
}

.tag.php { background-color: #8892bf; color: white; }
.tag.javascript { background-color: #f7df1e; color: black; }
.tag.angular { background-color: #dd0031; color: white; }
.tag.react { background-color: #61dafb; color: black; }
.tag.vue { background-color: #42b883; color: white; }
.tag.python { background-color: #3776ab; color: white; }
.tag.java { background-color: #007396; color: white; }
.tag.csharp { background-color: #68217a; color: white; }

/* Form */
.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Calendario */
.calendar-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.fc-event {
    cursor: pointer;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .candidate-actions .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }
}

/* Dashboard widgets */
.stat-card {
    border-left: 4px solid;
    border-radius: 4px;
}

.stat-card.primary { border-left-color: #007bff; }
.stat-card.success { border-left-color: #28a745; }
.stat-card.warning { border-left-color: #ffc107; }
.stat-card.danger { border-left-color: #dc3545; }

/* Login e registrazione */
.auth-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Landing page */
.hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #007bff;
}

/* Animazioni */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}