/* /Components/FilterPanelComponent.razor.rz.scp.css */
/* Filter Panel */
.filter-panel[b-59h5znup0b] {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 350px;
    height: 100%;
    background: #f1f1f1;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Smoother animation */
    z-index: 1001;
    padding: 1.5rem;
    overflow-y: auto;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

    .filter-panel.open[b-59h5znup0b] {
        right: 0;
    }

/* Panel Header */
.filter-panel-content h4[b-59h5znup0b] {
    margin: 0 0 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

/* Filter Options */
[b-59h5znup0b] .filter-option {
    margin-bottom: 1.5rem;
}

    /* Name Filter Input */
    [b-59h5znup0b] .filter-option input[type="text"] {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        color: #333;
        background-color: #f9f9f9;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        [b-59h5znup0b] .filter-option input[type="text"]:focus {
            outline: none;
            border-color: #4a90e2;
            box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
        }

        [b-59h5znup0b] .filter-option input[type="text"]::placeholder {
            color: #999;
            font-style: italic;
        }

    [b-59h5znup0b] .filter-option label {
        display: block;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        color: #555;
        font-weight: 500;
    }

    /* Dropdown Styling */
    [b-59h5znup0b] .filter-option select {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        color: #333;
        background-color: #f9f9f9;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        [b-59h5znup0b] .filter-option select:focus {
            outline: none;
            border-color: #4a90e2;
            box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
        }

    /* Sort Direction Button */
    [b-59h5znup0b] .filter-option button {
        padding: 0.5rem 1rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        background: #f9f9f9;
        color: #333;
        cursor: pointer;
        transition: all 0.2s;
    }

        [b-59h5znup0b] .filter-option button:hover {
            background: #e9ecef;
            border-color: #ccc;
        }

/* Submit Button */
/* Shared action button styles for submit and reset */
.action-button[b-59h5znup0b] {
    width: 100%;
    padding: 0.75rem;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .action-button:active[b-59h5znup0b] {
        transform: translateY(1px);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

/* Reset Button - styled like submit but slightly muted */
.reset-button[b-59h5znup0b] {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    margin-top: 0.75rem;
}

    .reset-button:hover[b-59h5znup0b] {
        background: linear-gradient(135deg, #5a6268, #4e5559);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    }

    .reset-button:active[b-59h5znup0b] {
        transform: translateY(1px);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

/* Submit specific background colors */
.submit-button[b-59h5znup0b] {
    background: linear-gradient(135deg, #4a90e2, #357abd);
}

    .submit-button:hover[b-59h5znup0b] {
        background: linear-gradient(135deg, #357abd, #2968a3);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

/* Toggle Switch */
.switch[b-59h5znup0b] {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

    .switch input[b-59h5znup0b] {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider[b-59h5znup0b] {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

    .slider[b-59h5znup0b]:before {
        content: "";
        position: absolute;
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: 0.3s;
        border-radius: 50%;
    }

.switch input:checked + .slider[b-59h5znup0b] {
    background-color: #4a90e2;
}

    .switch input:checked + .slider[b-59h5znup0b]:before {
        transform: translateX(22px);
    }
/* /Components/LoadingIndicator.razor.rz.scp.css */
.spinner[b-rsb3sx8br1] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #3498db;
    animation: spin-b-rsb3sx8br1 1s ease-in-out infinite;
    margin: 20px auto;
}

@keyframes spin-b-rsb3sx8br1 {
    to {
        transform: rotate(360deg);
    }
}
/* /Components/MultiSelectEnum.razor.rz.scp.css */
.multi-select-container[b-r6mmddlym4] {
    position: relative;
}

.multi-select-input[b-r6mmddlym4] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .multi-select-input:focus-within[b-r6mmddlym4] {
        outline: none;
        border-color: #4a90e2;
        box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
    }

.multi-select-content[b-r6mmddlym4] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    flex: 1;
}

.placeholder[b-r6mmddlym4] {
    color: #999;
    font-style: italic;
    opacity: 0.7;
    user-select: none;
    background: transparent;
    pointer-events: none;
}

.chip[b-r6mmddlym4] {
    background: #e5e7eb;
    border-radius: 16px;
    padding: 3px 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

    .chip button[b-r6mmddlym4] {
        border: none;
        background: transparent;
        cursor: pointer;
        font-size: 1rem;
    }

.arrow[b-r6mmddlym4] {
    margin-left: 10px;
    font-size: 0.8rem;
    color: #666;
}

.multi-select-dropdown[b-r6mmddlym4] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 4px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 1000;
    padding: 6px;
}

.dropdown-item[b-r6mmddlym4] {
    display: flex;
    gap: 8px;
    padding: 6px;
    cursor: pointer;
}

    .dropdown-item:hover[b-r6mmddlym4] {
        background: #f3f4f6;
    }
/* /Components/ReceptFormComponent.razor.rz.scp.css */
/* General Styling */
body[b-1u59gksmn1] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    padding: 20px;
}

h3[b-1u59gksmn1] {
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Form Styling */
.form-group[b-1u59gksmn1] {
    margin-bottom: 20px;
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

    .form-group label[b-1u59gksmn1] {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
        color: #495057;
    }

    .form-group h4[b-1u59gksmn1] {
        margin-bottom: 15px;
        padding-bottom: 5px;
        border-bottom: 1px solid #e9ecef;
        color: #2c3e50;
    }

/* Input Fields */
.form-control[b-1u59gksmn1] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.15s ease-in-out;
}

    .form-control:focus[b-1u59gksmn1] {
        border-color: #80bdff;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

.field[b-1u59gksmn1] {
    flex: 1 1 100%;
}

/* Ingredient and Step Sections */
.input-group[b-1u59gksmn1] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
    margin-bottom: 15px;
    padding: 12px;
    background-color: #f0f0f0;
    border-radius: 6px;
    border: 3px solid #e9ecef; /* Light gray border */
}

/* Buttons */
.btn[b-1u59gksmn1] {
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

.btn-primary[b-1u59gksmn1] {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

    .btn-primary:hover[b-1u59gksmn1] {
        background-color: #0069d9;
        border-color: #0062cc;
    }

.btn-secondary[b-1u59gksmn1] {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

    .btn-secondary:hover[b-1u59gksmn1] {
        background-color: #5a6268;
        border-color: #545b62;
    }

.btn-info[b-1u59gksmn1] {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: white;
}

    .btn-info:hover[b-1u59gksmn1] {
        background-color: #138496;
        border-color: #117a8b;
    }

.btn-disabled[b-1u59gksmn1] {
    opacity: 0.6;
    filter: grayscale(100%);
}

/* Validation Styling */
.validation-summary[b-1u59gksmn1] {
    color: #dc3545;
    margin-bottom: 15px;
}

.validation-message[b-1u59gksmn1] {
    color: red;
}

.preview-image[b-1u59gksmn1] {
    max-width: 200px;
    max-height: 200px;
    margin-top: 15px;
}

/* Auto-grow textarea styles */
.textarea-wrapper[b-1u59gksmn1] {
    position: relative;
}

.auto-grow[b-1u59gksmn1] {
    resize: none; /* disable native resize to replace with custom button */
    overflow: hidden;
    min-height: 60px;
}

.textarea-resize-button[b-1u59gksmn1] {
    position: absolute;
    right: 6px;
    bottom: 6px;
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 12px;
    cursor: pointer;
}

.textarea-resize-button:active[b-1u59gksmn1] {
    transform: translateY(1px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .input-group[b-1u59gksmn1] {
        flex-direction: column;
        align-items: stretch;
    }

        .input-group .form-control[b-1u59gksmn1] {
            width: 100%;
        }
}

[b-1u59gksmn1] #bereidingstijd-uren,
[b-1u59gksmn1] #bereidingstijd-minuten {
    width: 50px;
    display: inline-block;
    padding: 6px 8px;
    margin-bottom: 0;
    vertical-align: middle;
    box-sizing: border-box;
}

[b-1u59gksmn1] .bereidingstijd-span {
    display: inline-block;
    margin: 0 4px;
    vertical-align: middle;
}
/* /Components/RecipeCard.razor.rz.scp.css */
.recept-card[b-cljg188ppv] {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: #f0f0f0;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .recept-card:hover[b-cljg188ppv] {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

.recept-afbeelding[b-cljg188ppv] {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.recept-afbeelding-placeholder[b-cljg188ppv] {
    width: 100%;
    height: 150px;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #666;
}

.bereidingstijd[b-cljg188ppv] {
    font-style: italic;
    font-size: 0.9rem;
    color: #888;
    display: block;
    margin-bottom: 8px;
}

.score-box[b-cljg188ppv] {
    max-width: 220px;
    margin: 0 auto;
}

.score-item[b-cljg188ppv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.score-name[b-cljg188ppv] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* /Components/ScoreComponent.razor.rz.scp.css */
.score-container[b-sxapmuilxy] {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 1.2em;
}

.star[b-sxapmuilxy] {
    color: #ccc;
}

.star-filled[b-sxapmuilxy] {
    color: indianred;
}

.star-half-filled[b-sxapmuilxy] {
    position: relative;
    display: inline-block;
    color: #ccc;
}

    .star-half-filled[b-sxapmuilxy]::before {
        content: "★";
        position: absolute;
        left: 0;
        width: 50%;
        overflow: hidden;
        color: indianred;
    }

.score[b-sxapmuilxy] {
    margin-left: 8px;
    font-size: 0.8em;
    color: #666;
}

.noscore[b-sxapmuilxy] {
    font-size: 0.8em;
    color: #666;
}
/* /Components/ScoreOverzichtComponent.razor.rz.scp.css */
/* Score Modal */
.score-modal[b-m9ts6ulbh0] {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 350px;
    height: 100%;
    background: #f1f1f1;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 1001;
    padding: 1.5rem;
    overflow-y: auto;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

    .score-modal.open[b-m9ts6ulbh0] {
        right: 0;
    }

.score-modal-content h3[b-m9ts6ulbh0] {
    margin: 0 0 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.score-item[b-m9ts6ulbh0] {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close[b-m9ts6ulbh0] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #aaa;
    font-size: 1.75rem;
    font-weight: bold;
    cursor: pointer;
}

    .close:hover[b-m9ts6ulbh0] {
        color: #2c3e50;
    }

/* Backdrop */
.backdrop[b-m9ts6ulbh0] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .backdrop.open[b-m9ts6ulbh0] {
        opacity: 1;
        pointer-events: all;
    }


/* Submit Button */
.submit-button[b-m9ts6ulbh0] {
    width: 50%;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

    .submit-button:hover[b-m9ts6ulbh0] {
        background: linear-gradient(135deg, #357abd, #2968a3);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .submit-button:active[b-m9ts6ulbh0] {
        transform: translateY(1px);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

.score-selector[b-m9ts6ulbh0] {
    margin-bottom: 8px;
}

.star-select[b-m9ts6ulbh0] {
    cursor: pointer;
    font-size: 26px;
    color: #ccc;
    transition: transform 0.1s, color 0.1s;
}

    .star-select.filled[b-m9ts6ulbh0] {
        color: indianred;
    }

    .star-select:hover[b-m9ts6ulbh0] {
        transform: scale(1.2);
    }
/* /Layout/Header.razor.rz.scp.css */
.header[b-bp92rsrolx] {
    position: relative;
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    background-color: #d8d5db;
}

.banner[b-bp92rsrolx] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    flex: 0 0 80%;
    cursor: pointer;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-tgybf7tybn] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-tgybf7tybn] {
    flex: 1;
}

.sidebar[b-tgybf7tybn] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

#blazor-error-ui[b-tgybf7tybn] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-tgybf7tybn] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.debug-indicator[b-tgybf7tybn] {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}
/* /Layout/Navigation/NavBar.razor.rz.scp.css */
.navbar[b-szxvt5hchb] {
    width: 100%;
    height: 50px;
    background-color: #d8d5db;
    position: absolute;
    top: 150px;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
    display: flex; /* Keep flex for navbar itself */
}

.navbar-content[b-szxvt5hchb] {
    display: flex; /* Use flex for the inner container */
    align-items: center; /* Vertically center items */
    height: 100%; /* Take full height of navbar */
    width: 100%; /* Take full width of navbar */
    margin-left: 10px; /* Small left margin */
}

.menu-icon[b-szxvt5hchb] {
    width: 24px;
    height: 24px;
    margin-right: 10px; /* Space between icon and text */
    cursor: pointer;
}

.navbar h1[b-szxvt5hchb] {
    margin: 20px;
    font-size: 24px; /* Larger font size */
    font-weight: bold;
    text-align: left;
    white-space: nowrap;
    letter-spacing: 1px; /* Slightly increase letter spacing */
    font-family: 'Arial', sans-serif; /* Use a clean, modern font */
}

.title[b-szxvt5hchb] {
    cursor: pointer;
}

.user-section[b-szxvt5hchb] {
    margin-left: auto;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.user-name[b-szxvt5hchb] {
    margin-right: 8px;
    font-size: 14px;
}

.user-icon[b-szxvt5hchb] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-left: auto;
    margin-right: 10px;
}
/* /Layout/Navigation/NavMenu.razor.rz.scp.css */
/* Icon styles */
.icon[b-a8ij5elqyx] {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 20px;
    margin-right: 0.75rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon--home[b-a8ij5elqyx] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-house' viewBox='0 0 16 16'%3E%3Cpath d='M8.707 1.5a1 1 0 0 0-1.414 0L.646 8.146a.5.5 0 0 0 .708.708L2 8.207V13.5A1.5 1.5 0 0 0 3.5 15h9a1.5 1.5 0 0 0 1.5-1.5V8.207l.646.647a.5.5 0 0 0 .708-.708L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293zM13 7.207V13.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V7.207l5-5z'/%3E%3C/svg%3E");
}

.icon--book[b-a8ij5elqyx] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M1 2.828c.885-.37 2.154-.769 3.388-.893 1.33-.134 2.458.063 3.112.752v9.746c-.935-.53-2.12-.603-3.213-.493-1.18.12-2.37.461-3.287.811zm7.5-.141c.654-.689 1.782-.886 3.112-.752 1.234.124 2.503.523 3.388.893v9.923c-.918-.35-2.107-.692-3.287-.81-1.094-.111-2.278-.039-3.213.492zM8 1.783C7.015.936 5.587.81 4.287.94c-1.514.153-3.042.672-3.994 1.105A.5.5 0 0 0 0 2.5v11a.5.5 0 0 0 .707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5 0 0 0 .78 0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5 0 0 0 16 13.5v-11a.5.5 0 0 0-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809 8.985.936 8 1.783'/%3E%3C/svg%3E");
}

.icon--plus[b-a8ij5elqyx] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus-square' viewBox='0 0 16 16'%3E%3Cpath d='M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z'/%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4'/%3E%3C/svg%3E");
}

/* NavMenu styles */
.navmenu[b-a8ij5elqyx] {
    width: 200px;
    height: calc(100vh - 200px); /* 150px header + 50px navbar */
    background-color: #d8d5db;
    position: absolute;
    top: 200px !important; /* 150px (header) + 50px (navbar) */
    left: 0;
    z-index: 999;
    overflow-y: auto;
}

    /* NavMenu list and link styles */
    .navmenu ul[b-a8ij5elqyx] {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .navmenu li[b-a8ij5elqyx] {
        margin: 0.5rem 0;
    }

    .navmenu .nav-link[b-a8ij5elqyx] {
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        color: #333;
        text-decoration: none;
        font-weight: bold;
        border-radius: 8px;
        transition: background 0.2s;
    }

        .navmenu .nav-link:hover[b-a8ij5elqyx],
        .navmenu .nav-link.active[b-a8ij5elqyx] {
            background-color: black;
            color: white; /* Ensure text is visible on black background */
        }

/* Mobile menu styles */
@media (max-width: 768px) {
    .navmenu[b-a8ij5elqyx] {
        position: absolute;
        left: 0;
        top: 0;
        height: 100vh;
        transform: translateX(-100%);
        transition: transform 0.2s ease-in-out;
        z-index: 1000;
    }

        .navmenu.open[b-a8ij5elqyx] {
            transform: translateX(0);
        }
}
/* /Pages/Login/Login.razor.rz.scp.css */
.login-container[b-l3q2w7ar0b] {
    max-width: 400px;
    margin: 80px auto;
    padding: 30px;
    border-radius: 12px;
    background: #f0f0f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    font-family: sans-serif;
}

h3[b-l3q2w7ar0b] {
    margin-bottom: 20px;
}

.form-group[b-l3q2w7ar0b] {
    margin-bottom: 15px;
}

input[b-l3q2w7ar0b] {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: border 0.2s, box-shadow 0.2s;
}

    input:focus[b-l3q2w7ar0b] {
        outline: none;
        border-color: #4f46e5;
        box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
    }

button[b-l3q2w7ar0b] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #4f46e5;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

    button:hover:not(:disabled)[b-l3q2w7ar0b] {
        background: #4338ca;
    }

    button:active:not(:disabled)[b-l3q2w7ar0b] {
        transform: scale(0.98);
    }

    button:disabled[b-l3q2w7ar0b] {
        background: #a5b4fc;
        cursor: not-allowed;
    }

.success[b-l3q2w7ar0b] {
    padding: 12px;
    border-radius: 8px;
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.error[b-l3q2w7ar0b] {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    background: #fafafa;
    color: #991b1b;
    border: 1px solid #fecaca;
}
/* /Pages/Recepten/Overzicht.razor.rz.scp.css */
.recept-grid[b-6a6311nbky] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

h3[b-6a6311nbky] {
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.filter-icon[b-6a6311nbky] {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.title-bar[b-6a6311nbky] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Inline name filter placed under the title bar */
.inline-filter[b-6a6311nbky] {
    padding: 0 20px 8px 20px;
}

.inline-filter .name-filter-input[b-6a6311nbky] {
    width: 100%;
    max-width: 720px;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background-color: #f9f9f9;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.inline-filter .name-filter-input:focus[b-6a6311nbky] {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.inline-filter .name-filter-input[b-6a6311nbky]::placeholder {
    color: #999;
    font-style: italic;
}

.backdrop[b-6a6311nbky] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .backdrop.open[b-6a6311nbky] {
        opacity: 1;
        pointer-events: all;
    }

#scrollToTopButton[b-6a6311nbky] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

    #scrollToTopButton:hover[b-6a6311nbky] {
        background: #0056b3;
    }
/* /Pages/Recepten/ReceptDetails.razor.rz.scp.css */
.recept-detail[b-95gurdfz6i] {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .recept-detail h4[b-95gurdfz6i] {
        color: #2c3e50;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .recept-detail p[b-95gurdfz6i] {
        margin: 8px 0;
        line-height: 1.6;
    }

    .recept-detail img[b-95gurdfz6i] {
        display: block;
        margin: 15px auto;
        border-radius: 4px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .recept-detail h5[b-95gurdfz6i] {
        color: #3498db;
        margin: 15px 0 10px 0;
        font-size: 1.1em;
    }

    .recept-detail ul[b-95gurdfz6i],
    .recept-detail ol[b-95gurdfz6i] {
        padding-left: 20px;
        margin: 5px 0 15px 0;
    }

    .recept-detail li[b-95gurdfz6i] {
        margin-bottom: 5px;
        line-height: 1.5;
    }

    .recept-detail .score[b-95gurdfz6i] {
        color: #e67e22;
        font-weight: bold;
    }

.preserve-whitespace[b-95gurdfz6i] {
    white-space: pre-wrap;
}

.button-container[b-95gurdfz6i] {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.btn-primary[b-95gurdfz6i], .btn-danger[b-95gurdfz6i] {
    width: 100%;
    max-width: 150px;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
}

.btn-primary[b-95gurdfz6i] {
    background-color: #007bff;
    color: white;
}

    .btn-primary:hover[b-95gurdfz6i] {
        background-color: #0069d9;
    }

.btn-danger[b-95gurdfz6i] {
    background-color: #dc3545;
    color: white;
}

    .btn-danger:hover[b-95gurdfz6i] {
        background-color: #c82333;
    }


.title-bar[b-95gurdfz6i] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.right-group[b-95gurdfz6i] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

    .right-group .categorie[b-95gurdfz6i] {
        font-size: 0.8rem;
        color: #888;
        font-style: normal;
        margin-bottom: 4px;
    }

.score-container[b-95gurdfz6i] {
    margin-bottom: 0;
    cursor: pointer;
    display: inline-block;
}
