.ksplud-dates-wrapper {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: center;
}

.ksplud-date {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 8px 12px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.ksplud-date:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.ksplud-date + .ksplud-date {
    margin-top: 0;
}

.ksplud-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 6px;
}

.ksplud-icon-svg {
    width: 16px;
    height: 16px;
    stroke: #555;
    opacity: 0.8;
}

.ksplud-label {
    margin-right: 6px;
    font-weight: 600;
    color: #333;
    font-size: 13px;
}

.ksplud-date time {
    color: #555;
    font-weight: 500;
    font-size: 13px;
}

.ksplud-shortcode-date {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    background: #f8f9fa;
    border-radius: 4px;
    margin: 0 2px;
}

.ksplud-shortcode-date .ksplud-icon {
    margin-right: 4px;
}

.ksplud-shortcode-date .ksplud-label {
    margin-right: 4px;
}

.ksplud-shortcode-both-dates {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}

.ksplud-separator {
    margin: 0 8px;
    color: #999;
    font-weight: 300;
}

@media screen and (max-width: 768px) {
    .ksplud-dates-wrapper {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .ksplud-dates-wrapper {
        padding: 10px;
        font-size: 13px;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .ksplud-date {
        justify-content: center;
        text-align: center;
    }
} 