tspan {
    color: #ffffff !important;
}
.event-component {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.event-header {
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.event-card {
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
}

@media only screen and (max-width: 1400px) {
    .event-card {
        display: block;
    }
    .event-card .event-time,
    .event-card .event-name {
        display: flex;
        justify-content: center;
    }
    .btn-configure {
        width: 100%;
        display: block;
    }
    .event-details {
        margin: 20px 0px;
    }
}

.btn-configure-rf{
    max-width: 180px;
}

div.event-name.text-end{
    font-size: 0.8rem;
}

.date-cube {
    background: #121b61;
    color: white;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    min-width: 70px;
    font-weight: bold;
}

.date-day {
    font-size: 11px;
    margin-bottom: 2px;
    opacity: 0.8;
}

.date-number {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 2px;
}

.date-month {
    font-size: 11px;
    opacity: 0.8;
}

.event-details {
    flex: 1;
}

.event-time {
    color: #6c757d;
    font-size: 12px;
    margin-bottom: 4px;
}

.event-name {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.event-status {
    color: #6c757d;
    font-size: 12px;
}

.event-actions {
    margin-left: auto;
}

.btn-configure {
    background: #121b61;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-configure:hover {
    background: #09297a;
}

.btn-more {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    margin-left: 8px;
}

.btn-more:hover {
    color: #2c3e50;
}

/* Dark theme styles */
.dark-theme .event-component {
    background: #121b61;
    border-color: #4a5568;
}

.dark-theme .event-card {
    background: #1944b2;
    color: #e2e8f0;
}

.dark-theme .event-header {
    color: #a0aec0;
}

.dark-theme .event-name {
    color: #e2e8f0;
}

.dark-theme .event-time,
.dark-theme .event-status {
    color: #a0aec0;
}
