/* ==========================================
   CDV Booking Calendar - Metabox Styles
   ========================================== */

/* Container metabox */
.cdv-metabox {
    padding: 15px 0;
}

/* Sections */
.cdv-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.cdv-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cdv-section h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: #1d2327;
}

.cdv-section .description {
    margin: 5px 0 15px 0;
    font-size: 13px;
    color: #646970;
}

/* Gestion des URLs */
.cdv-url-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.cdv-url-row input[type="url"] {
    flex: 1;
}

.cdv-url-row .button {
    flex-shrink: 0;
    min-width: 40px;
    height: 40px;
    padding: 0;
}

.cdv-url-row .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Info box */
.cdv-info-box {
    background: #f0f6fc;
    border-left: 4px solid #72aee6;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
}

.cdv-info-box p {
    margin: 0 0 10px 0;
    font-size: 13px;
}

.cdv-info-box p:last-child {
    margin-bottom: 0;
}

.cdv-info-box .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    vertical-align: text-bottom;
    margin-right: 5px;
}

.cdv-info-box ul {
    margin: 10px 0 0 20px;
    font-size: 13px;
}

.cdv-info-box li {
    margin-bottom: 5px;
}

/* Sidebar statistiques */
.cdv-stats-sidebar {
    padding: 10px 0;
}

.cdv-stat-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.cdv-stat-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cdv-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2271b1;
    line-height: 1;
}

.cdv-stat-number.cdv-stat-success {
    color: #00a32a;
}

.cdv-stat-number.cdv-stat-muted {
    color: #999;
}

.cdv-stat-label {
    font-size: 13px;
    color: #646970;
    margin-top: 5px;
}

.cdv-stat-date {
    font-size: 16px;
    font-weight: 600;
    color: #1d2327;
    margin-top: 5px;
}

/* Shortcode box */
.cdv-shortcode-box {
    padding: 10px 0;
}

.cdv-shortcode-item {
    margin-bottom: 20px;
}

.cdv-shortcode-item:last-child {
    margin-bottom: 0;
}

.cdv-shortcode-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    color: #1d2327;
}

.cdv-shortcode-input {
    width: 100%;
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 8px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 4px;
}

.cdv-shortcode-input:focus,
.cdv-shortcode-input:hover {
    background: #fff;
    border-color: #2271b1;
}

.cdv-shortcode-item .description {
    margin-top: 5px;
    font-size: 12px;
    color: #646970;
}

/* Responsive */
@media (max-width: 782px) {
    .cdv-url-row {
        flex-direction: column;
    }
    
    .cdv-url-row .button {
        width: 100%;
    }
}