<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/************************************************************
 * 1) ESTILOS BÃSICOS DO CONTAINER .agenda-plugin
 ************************************************************/
.agenda-plugin {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

/************************************************************
 * 2) BOTOES DA TOOLBAR DO FULLCALENDAR
 ************************************************************/
.agenda-plugin .fc-toolbar button.fc-button {
    /* Remove TODOS os estilos herdados */
    all: unset !important;
    box-sizing: border-box !important;
    display: inline-block !important;
    text-align: center !important;
    cursor: pointer !important;

    /* Estilo desejado */
    background-color: #0073aa !important;
    color: #fff !important;
    border-radius: 4px !important;
    padding: 6px 12px !important;
    margin: 0 3px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: background-color 0.2s ease-in-out !important;
    text-transform: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

/* Hover do botÃ£o */
.agenda-plugin .fc-toolbar button.fc-button:hover {
    background-color: #005f8d !important;
}

/* Ativo/focado */
.agenda-plugin .fc-toolbar button.fc-button:active,
.agenda-plugin .fc-toolbar button.fc-button:focus {
    background-color: #004d73 !important;
    box-shadow: none !important;
}

/* BotÃ£o desabilitado */
.agenda-plugin .fc-toolbar .fc-state-disabled {
    opacity: 0.6 !important;
    pointer-events: none !important;
}

/* TÃ­tulo (mÃªs/ano) da toolbar */
.agenda-plugin .fc-toolbar h2 {
    font-weight: bold;
}

/************************************************************
 * 3) AJUSTES GERAIS NO FULLCALENDAR
 ************************************************************/
/* Remove espaÃ§amento extra no header (opcional) */
.fc-row.fc-widget-header {
    margin-bottom: -14px;
}

/* Permite pointer no topo do dia (day-top) se desejar clique */
.fc-day-top {
    cursor: pointer !important;
}

/* Eventos no grid (antes de sobrescrever) */
.fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-end {
    font-size: 12px;
}

/************************************************************
 * 4) LAYOUT: CALENDÃRIO + LISTA LADO A LADO
 ************************************************************/
#agenda-wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

#agenda-calendar {
    flex: 0 0 70%;
    margin-right: 20px;
}

#agenda-lista {
    flex: 1;
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
}

/************************************************************
 * 5) MEDIA QUERY PARA TELAS MENORES
 ************************************************************/
@media (max-width: 767px) {
    #agenda-wrapper {
        flex-direction: column;
    }
    #agenda-calendar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    #agenda-lista {
        width: 100%;
    }
    
    /* Ajustes no tÃ­tulo do calendÃ¡rio */
    .fc-toolbar h2 {
        margin-bottom: 24px;
        font-size: 18px;
    }
    
    /* Tamanho menor para cabeÃ§alho de dias (DOM, SEG...) */
    .agenda-plugin .fc-day-header span {
        font-size: 12px;
    }
    
    /* Ajusta toolbar no mobile */
    .fc-toolbar.fc-header-toolbar {
        margin-bottom: 0;
    }
    
    /* Ajusta tamanho de texto dos eventos */
    .agenda-plugin .fc-event {
        font-size: 14px !important;
    }
    
    /* NÃºmeros dos dias */
    .agenda-plugin .fc-day-number {
        font-size: 18px !important;
    }
}

/************************************************************
 * 6) ESTILO PARA OS EVENTOS ("X eventos") E CABEÃ‡ALHO DE DIAS
 ************************************************************/
/* FullCalendar: estilo inicial do "X eventos" */
.agenda-plugin .fc-event {
    background-color: #0073aa; 
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 3px;
}
/* Mas aqui, vocÃª define que o evento fique TRANSPARENTE, 
   sobrescrevendo a cor acima. Se nÃ£o quiser cor alguma, 
   mantenha esta linha. */
.agenda-plugin .fc-event {
    background-color: transparent !important;
}

/* Remove clique no bloco do evento (para permitir clique no dia) */
.agenda-plugin .fc-event,
.agenda-plugin .fc-title {
    pointer-events: none !important;
}

/* CabeÃ§alho dos dias (DOM, SEG, TER...) */
.agenda-plugin .fc-day-header {
    background-color: #f1f1f1;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px;
    border: 1px solid #ddd;
}

/* NÃºmeros dos dias */
.agenda-plugin .fc-day-number {
    font-size: 24px;
    color: #333;
    padding: 5px;
}

/* Hover no dia */
.agenda-plugin .fc-day:hover, 
.agenda-plugin .fc-event:hover {
    background-color: #eaeaea;
    cursor: default;
}

/************************************************************
 * 7) LISTAGEM DE COMPROMISSOS (#agenda-lista)
 ************************************************************/
#agenda-lista h3 {
    font-weight: bold;
    font-size: 24px;
}

#agenda-lista p {
    margin: 0 0 10px;
    border-bottom: 1px solid #ccc;
    padding: 8px 0 8px 16px;
    font-weight: normal;
}

/* Links na lista */
#agenda-lista a {
    color: #0073aa;
    text-decoration: none;
}
#agenda-lista a:hover {
    text-decoration: underline;
}

/************************************************************
 * 8) DESTAQUE DO DIA SELECIONADO NO CALENDÃRIO
 ************************************************************/
.agenda-plugin .fc-day.fc-day-selected {
    background-color: #ffd700;   /* amarelo ouro */
    outline: 2px solid #f4b000;  /* borda de destaque */
}
</pre></body></html>