/* Flickdose Movie Recommender styles */

.fd-movie-rec-wrapper {
    max-width: 600px;
    margin: 24px auto;
    padding: 20px;
    border-radius: 16px;
    background: #0b1120;
    color: #e5e7eb;
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fd-movie-form .fd-field {
    margin-bottom: 16px;
}

.fd-movie-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #9ca3af;
}

.fd-movie-form select,
.fd-movie-form textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #1f2937;
    padding: 10px 12px;
    background: #020617;
    color: #e5e7eb;
    font-size: 14px;
}

.fd-movie-form textarea:focus,
.fd-movie-form select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 1px rgba(99,102,241,.4);
}

.fd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: #f9fafb;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: transform .08s ease, box-shadow .08s ease, opacity .08s ease;
}

.fd-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,.5);
    opacity: 0.95;
}

.fd-movie-result {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.6;
}

.fd-loading {
    opacity: 0.8;
    font-style: italic;
}

.fd-rec-box {
    background: rgba(15,23,42,.9);
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(148,163,184,.4);
}

.fd-error {
    color: #fecaca;
}
