/* Léleksimogató Plugin Styles */

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

.leleksimogato-card {
background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(139, 115, 85, 0.15);
    color: #bda78f;
    border: 1px solid rgb(232 215 201);
}

.leleksimogato-title {
    font-size: 2rem;
    font-weight: 400;
    margin: 0 0 0.5rem 0;
    text-align: center;
    color: #8b7355;
    font-family: Georgia, serif;
}

.leleksimogato-description {
    text-align: center;
    opacity: 0.85;
    margin: 0 0 2rem 0;
    font-size: 1rem;
    color: #6b5d52;
}

.leleksimogato-form {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.leleksimogato-textarea {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(139, 115, 85, 0.2);
    border-radius: 50px;
    background: #fdfbf7 !important;
    backdrop-filter: blur(10px);
    color: #6b5d52;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: 56px;
    margin-bottom: 0 !important;
    border-radius: 40px !important;
}

.leleksimogato-textarea::placeholder {
    color: rgba(107, 93, 82, 0.5);
}

.leleksimogato-textarea:focus {
    outline: none;
    border-color: #8b7355;
    background: rgba(255, 255, 255, 0.9);
}

.leleksimogato-button {
    width: auto;
    padding: 1rem 2.5rem;
    background: #8b7355;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.leleksimogato-button:hover {
    background: #9f8566;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
}

.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: 2rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 22px;
    animation: slideIn 0.4s ease;
    position: relative;
    background-color: rgb(143 166 122 / 0.1) !important;
    border: 1px solid rgba(143, 166, 122, 0.2);
    padding-left: 2rem;
}

.leleksimogato-result-icon {
    position: absolute;
    top: -0.8rem;
    left: 1.5rem;
    width: 24px;
    height: 24px;
    color: #8fa67a;
    stroke: #8fa67a;
}

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

.leleksimogato-message {
	color: #b3997e;
    font-style: italic;
    font-family: Georgia, serif;
    text-align: center;
    padding-top: 0.5rem;
    font-size: 1.5rem;
    line-height: 2rem;
}

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

.leleksimogato-loading .spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border: 4px solid rgba(139, 115, 85, 0.2);
    border-top-color: #8b7355;
    border-radius: 50%;
    color: #6b5d52;
    opacity: 0.8pin 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: 0.95rem;
    }
    
    .leleksimogato-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .leleksimogato-textarea {
        width: 100%;
    }
    
    .leleksimogato-button {
        width: 100%;
        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);
    }
}
