/* Sincerely Fuck You App - WordPress Plugin Styles */

.sfya-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sfya-header {
    text-align: center;
    margin-bottom: 30px;
}

.sfya-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin: 0;
}

.sfya-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.sfya-message-form {
    padding: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.sfya-message-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #374151;
}

.sfya-message-form textarea {
    width: 100%;
    min-height: 120px;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 20px;
    transition: border-color 0.2s;
}

.sfya-message-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.sfya-message-form button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.sfya-message-form button:hover {
    background: #2563eb;
}

.sfya-messages {
    padding: 30px;
}

.sfya-message {
    background: #f9fafb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #3b82f6;
}

.sfya-message p {
    margin: 0;
    color: #374151;
    line-height: 1.6;
}

.sfya-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

.sfya-success {
    background: #10b981;
}

.sfya-error {
    background: #ef4444;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .sfya-container {
        padding: 15px;
    }
    
    .sfya-header h1 {
        font-size: 2rem;
    }
    
    .sfya-message-form,
    .sfya-messages {
        padding: 20px;
    }
}
