/* Styles for Voodoo Google Calendar */
.voodoo-calendar-container {
    max-width: 800px;
}

/* Header style with purple background */
.voodoo-calendar-header {
    padding: 10px 15px 1px;
    line-height: 1;
    background-color: #5B3DC4;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.voodoo-calendar-header h1 {
    color: #fff;
    line-height: 1;
    font-size: 1.5em;
    margin: 10px 0;
}

/* Content wrapper style with white background */
.voodoo-calendar-body {
    background: #fff;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    border-top: none;
    margin-bottom: 20px;
}

/* Event List Items */
.voodoo-calendar-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.voodoo-calendar-item.has-border {
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.voodoo-calendar-item {
    padding: 15px 0 0;
    border-top: 1px solid #EEEEEE;
}

.voodoo-calendar-item:first-child {
    border-top: 0;
}

/* Date Badge on the Left */
.voodoo-calendar-badge {
    background: #e6eeff;
    color: #5B3CC4;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    min-width: 60px;
    height: fit-content;
}

.voodoo-calendar-badge span {
    font-size: 1.5em;
    display: block;
    line-height: 1.1;
}

/* Event Details on the Right */
.voodoo-calendar-details {
    flex: 1;
}

.voodoo-calendar-details h4 {
    margin: 0 0 5px 0;
    font-size: 1.1em;
    line-height: 1.3;
    font-weight: bold;
    color: #333;
}

.voodoo-calendar-details p {
    margin: 0;
    font-size: 0.85em;
    color: #777;
}

/* Button style */
.voodoo-calendar-more-btn {
    border-radius: 10px;
    display: block;
    text-align: center;
    text-decoration: none;
}