.teleshop-oos-followup {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
}

.teleshop-oos-followup h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.teleshop-oos-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.teleshop-oos-email-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.teleshop-oos-email-field input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.teleshop-oos-email-field input[type="email"]:focus {
    outline: none;
    border-color: #0071a1;
}

.teleshop-oos-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.teleshop-oos-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.teleshop-oos-checkbox label {
    font-size: 13px;
    color: #555;
    cursor: pointer;
    line-height: 1.4;
    margin: 0;
}

.teleshop-oos-submit {
    background-color: #0071a1;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.teleshop-oos-submit:hover {
    background-color: #005a82;
}

.teleshop-oos-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.teleshop-oos-message {
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 14px;
    display: none;
}

.teleshop-oos-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.teleshop-oos-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .teleshop-oos-followup {
        padding: 15px;
    }
    
    .teleshop-oos-followup h4 {
        font-size: 14px;
    }
    
    .teleshop-oos-email-field input[type="email"],
    .teleshop-oos-submit {
        font-size: 13px;
    }
}
