.calget-admin-container {
    margin: 20px 0;
    max-width: 800px;
}

.calget-calendars,
.calget-events,
.calget-shortcode {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

#calget-calendar-select {
    width: 100%;
    max-width: 400px;
    margin: 10px 0;
}

.calget-event-item {
    padding: 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border: 1px solid #e2e4e7;
    cursor: pointer;
}

.calget-event-item:hover {
    background: #f0f0f1;
}

.calget-event-item.selected {
    background: #e5f5fa;
    border-color: #00a0d2;
}

.calget-event-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.calget-event-datetime {
    color: #646970;
    font-size: 13px;
}

.calget-shortcode code {
    display: block;
    padding: 10px;
    background: #f6f7f7;
    border: 1px solid #ddd;
}

/* New Calendar Button Styles */
.add-to-calendar-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.calget-block {
    outline: none !important;
    position: relative;
}

.calget-block:not(.is-selected):hover::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 1px dashed #ddd;
    pointer-events: none;
    z-index: 1;
}

.calget-block.is-selected::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 1px dashed #0073aa;
    pointer-events: none;
    z-index: 1;
}

.calget-block .calget-preview {
    min-height: 80px;
    z-index: 0;
}

.calendar-button {
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    min-width: 120px;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    outline: none;
}

.calendar-button:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.calendar-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.calendar-button img {
    object-fit: contain;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
} 