.agenda-evento {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    overflow: hidden;
    background: rgb(52, 152, 219);
    width: 100% !important;
}

.agenda-hora {
    background: rgba(255, 255, 255, 0.2);
    padding: 1px 4px;
    border-radius: 3px;
}

.agenda-cliente {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.agenda-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 4px;
    border: 2px solid white;
}

.event-card {
    background: #10b981;
    color: white;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.4;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    min-width: 180px;
}

.event-card div {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
}

.event-card div:last-child {
    margin-bottom: 0;
}

.fc-toolbar-title::first-letter {
    text-transform: uppercase;
}

.sidebar {
    background: #fff !important;
    border-right: 1px solid #ddd !important;
    position: sticky;
    top: 0;
    height: 100vh;
    width: 260px !important;
    min-width: 260px !important;
}

header {
    position: fixed;
    top: 0;
    left: 260px;
    right: 0;
    z-index: 1000;
    background: #fff;
}

#conteudo {
    margin-top: 86px;
}