/* Léleksimogató Plugin Styles */

.leleksimogato-container {
    max-width: 700px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.leleksimogato-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    color: white;
}

.leleksimogato-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-align: center;
    color: white;
}

.leleksimogato-description {
    text-align: center;
    opacity: 0.95;
    margin: 0 0 2rem 0;
    font-size: 1.1rem;
}

.leleksimogato-form {
    margin-bottom: 1.5rem;
}

.leleksimogato-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-sizing: border-box;
}

.leleksimogato-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.leleksimogato-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
}

.leleksimogato-button {
    width: 100%;
    padding: 1rem 2rem;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.leleksimogato-button:hover {
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.leleksimogato-button:active {
    transform: translateY(0);
}

.leleksimogato-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.leleksimogato-button .button-icon svg {
    display: block;
}

.leleksimogato-result {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.leleksimogato-message {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
}

.leleksimogato-loading {
    text-align: center;
    padding: 2rem;
}

.leleksimogato-loading .spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.leleksimogato-loading p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .leleksimogato-card {
        padding: 2rem 1.5rem;
    }
    
    .leleksimogato-title {
        font-size: 1.5rem;
    }
    
    .leleksimogato-description {
        font-size: 1rem;
    }
    
    .leleksimogato-button {
        font-size: 1rem;
    }
    
    .leleksimogato-message {
        font-size: 1rem;
    }
}

/* Dark Mode Support (if WordPress theme supports it) */
@media (prefers-color-scheme: dark) {
    .leleksimogato-result {
        background: rgba(255, 255, 255, 0.9);
    }
}
