/* Add to styles.css */
.calendar-draft-preview {
    background: linear-gradient(135deg, #2a2d35 0%, #23252C 100%);
    border: 1px solid rgba(114, 216, 239, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
}

.calendar-draft-preview h3 {
    color: #72D8EF;
    margin-bottom: 15px;
}

.draft-details {
    background: rgba(20, 22, 28, 0.5);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.draft-field {
    margin-bottom: 10px;
    color: #F4F4F4;
}

.draft-field strong {
    color: #72D8EF;
    margin-right: 8px;
}

.draft-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.draft-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #72D8EF 0%, #5ab0bf 100%);
    color: #14161C;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(114, 216, 239, 0.4);
}

.btn-secondary {
    background: rgba(114, 216, 239, 0.2);
    color: #72D8EF;
    border: 1px solid #72D8EF;
}

.btn-secondary:hover {
    background: rgba(114, 216, 239, 0.3);
}

.btn-danger {
    background: rgba(255, 82, 82, 0.2);
    color: #ff5252;
    border: 1px solid #ff5252;
}

.btn-danger:hover {
    background: rgba(255, 82, 82, 0.3);
}

.draft-link {
    text-align: center;
}

.draft-link a {
    color: #72D8EF;
    text-decoration: none;
    font-size: 14px;
}

.draft-link a:hover {
    text-decoration: underline;
}