/**
 * Stili per il frontend di Smart ShortLink
 */

.smart-shortlink-public-form {
    max-width: 800px;
    margin: 0 auto 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.smart-shortlink-form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 10px;
}

.smart-shortlink-form-field {
    flex: 1;
    min-width: 200px;
}

.smart-shortlink-destination-field {
    flex: 3;
}

.smart-shortlink-form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.smart-shortlink-form-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.smart-shortlink-code-field {
    display: flex;
    align-items: stretch;
}

.smart-shortlink-prefix {
    background-color: #f0f0f0;
    padding: 10px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.smart-shortlink-code-field input {
    flex: 1;
    border-left: none;
    border-radius: 0 4px 4px 0;
}

.smart-shortlink-form-actions {
    display: flex;
    align-items: flex-end;
}

.smart-shortlink-submit {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    height: 42px;
}

.smart-shortlink-submit:hover {
    background-color: #005a87;
}

.smart-shortlink-advanced-toggle {
    margin: 10px 0;
}

.smart-shortlink-toggle-link {
    color: #0073aa;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.smart-shortlink-toggle-icon {
    margin-left: 5px;
    font-weight: bold;
}

.smart-shortlink-utm-row {
    margin-top: 15px;
}

.smart-shortlink-result-inner {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    margin-top: 20px;
    border-radius: 4px;
}

.smart-shortlink-url-container {
    display: flex;
    margin-top: 10px;
    gap: 10px;
}

.smart-shortlink-url-container input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.smart-shortlink-copy {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.smart-shortlink-copy:hover {
    background-color: #e0e0e0;
}

/* Stili responsive */
@media screen and (max-width: 600px) {
    .smart-shortlink-form-row {
        flex-direction: column;
    }
    
    .smart-shortlink-form-field {
        width: 100%;
    }
    
    .smart-shortlink-url-container {
        flex-direction: column;
    }
    
    .smart-shortlink-copy {
        margin-top: 10px;
    }
} 