.scheduledEvents-date .buttons {
    background: none;
}

.scheduledEvents-date .buttons-container {
    text-align: center;
}

.scheduledEvents-date .datepicker-button {
    display: inline-block;
    background: #0077cc;
    color: black;
    border: none;
    padding: 0.5em 1em;
    font-size: 1em;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
}

.scheduledEvents-date .cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4em;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.scheduledEvents-date .date-card {
    width: 55px;
    height: 95px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    position: relative;
    transition: transform 0.2s ease, opacity 0.2s ease;
    animation: fadeInSlide 0.3s ease-out;
}

.scheduledEvents-date .date-card.removing {
    opacity: 0;
    transform: translateY(-5px);
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scheduledEvents-date .date-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
    z-index: 1;
}

.scheduledEvents-date .delete-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 12px;
    cursor: pointer;
    line-height: 16px;
    text-align: center;
    z-index: 2;
}

.scheduledEvents-date svg {
    width: 100%;
    height: 100%;
    display: block;
}

.scheduledEvents-date .month-text,
.scheduledEvents-date .day-text,
.scheduledEvents-date .year-text,
.scheduledEvents-date .time-text {
    font-size: 12px;
    fill: white;
}

.scheduledEvents-date .time-text {
    fill: #333;
}

#hiddenInput {
    display: none;
}