/* Recipe Agent - Custom Styles */

.recipe-container {
    max-width: 600px;
    margin: 0 auto;
}

.recipe-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.recipe-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
}

.form-textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 6px;
}

.radio-option input[type="radio"] {
    cursor: pointer;
}

.radio-option label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 6px;
}

.checkbox-option input[type="checkbox"] {
    cursor: pointer;
}

.checkbox-option label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

.submit-button {
    width: 100%;
    padding: 12px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-button:hover:not(:disabled) {
    background: #0052a3;
}

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.result-box {
    margin-top: 25px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
    border: 1px solid #eee;
    min-height: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 13px;
    font-family: 'Courier New', monospace;
    color: #333;
}

.result-loading {
    color: #666;
}

.result-error {
    color: #d32f2f;
}

.nav-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
}

.nav-link:hover {
    text-decoration: underline;
}
