/* Estilos para el shortcode de Link Corto */
.link-corto-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 12px 16px;
    margin: 16px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    gap: 12px;
    max-width: 100%;
    box-sizing: border-box;
}

.link-corto-label {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    white-space: nowrap;
    flex-shrink: 0;
}

.link-corto-url {
    flex: 1;
    min-width: 0;
}

.link-corto-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background: #ffffff;
    font-size: 13px;
    font-family: 'Courier New', Courier, monospace;
    color: #495057;
    cursor: pointer;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-sizing: border-box;
}

.link-corto-input:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.link-corto-input:hover {
    border-color: #adb5bd;
}

/* Responsive */
@media (max-width: 768px) {
    .link-corto-box {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
    }
    
    .link-corto-label {
        white-space: normal;
        text-align: center;
        font-size: 13px;
    }
    
    .link-corto-input {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Variantes de estilo adicionales */
.link-corto-box.minimal {
    background: transparent;
    border: none;
    padding: 8px 0;
}

.link-corto-box.compact {
    padding: 8px 12px;
    margin: 8px 0;
    gap: 8px;
}

.link-corto-box.compact .link-corto-label {
    font-size: 12px;
}

.link-corto-box.compact .link-corto-input {
    font-size: 12px;
    padding: 6px 8px;
}

.link-corto-box.dark {
    background: #343a40;
    border-color: #495057;
}

.link-corto-box.dark .link-corto-label {
    color: #f8f9fa;
}

.link-corto-box.dark .link-corto-input {
    background: #495057;
    border-color: #6c757d;
    color: #f8f9fa;
}

.link-corto-box.dark .link-corto-input:focus {
    border-color: #80bdff;
    background: #495057;
}

.link-corto-box.bordered {
    border: 2px solid #007bff;
    background: #f8f9ff;
}

.link-corto-box.rounded {
    border-radius: 12px;
}