/* Estilos gerais */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

/* Estilos do calendário */
.fc-event {
    cursor: pointer;
}

.fc-event-title {
    font-weight: bold;
}

.fc-event-time {
    font-style: italic;
}

.fc-day-today {
    background-color: rgba(55, 136, 216, 0.1) !important;
}

/* Estilos para eventos públicos e privados */
.event-public {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
}

.event-private {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
}

/* Estilos para formulários */
.form-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-title {
    color: #0d6efd;
    margin-bottom: 20px;
}

/* Estilos para cards de eventos */
.event-card {
    transition: transform 0.3s;
    margin-bottom: 20px;
}

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

.event-card .card-header {
    font-weight: bold;
}

.event-card .badge {
    font-size: 0.8rem;
}

/* Estilos para botões de ação */
.btn-action {
    margin-right: 5px;
}

/* Estilos para perfil de utilizador */
.profile-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profile-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

/* Estilos para modal de evento */
.modal-event-header {
    background-color: #0d6efd;
    color: white;
}

.event-details {
    margin-bottom: 15px;
}

.event-details i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

/* Estilos para página de administração */
.admin-dashboard {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.admin-stats {
    text-align: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 10px;
}

.admin-stats h3 {
    color: #0d6efd;
    font-size: 2rem;
    margin-bottom: 5px;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .fc-header-toolbar {
        flex-direction: column;
    }
    
    .fc-toolbar-chunk {
        margin-bottom: 10px;
    }
}