/* /Components/GuidebookAddBanner.razor.rz.scp.css */
.custom-banner[b-87mj6bdht3] {
    width: 100%;
    background-color: #2196F3; /* Stylish background color */
    color: white;
    padding: 10px 15px; /* 10px padding for top and bottom, 15px for left and right */
    border-radius: 15px; /* Rounded borders */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Optional stylish shadow */
    margin-top: 20px; /* Margin at the top */
    margin-bottom: 20px; /* Margin at the bottom */
}

.banner-text[b-87mj6bdht3] {
    font-size: 18px;
    font-weight: bold;
    flex: 1;
}

.banner-buttons[b-87mj6bdht3] {
    display: flex;
    gap: 10px;
}

    .banner-buttons button[b-87mj6bdht3] {
        background-color: #fff;
        color: #2196F3;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s ease;
    }

        .banner-buttons button:hover[b-87mj6bdht3] {
            background-color: #f1f1f1;
        }

    .banner-buttons .btn-dismiss[b-87mj6bdht3] {
        background-color: #f44336; /* Red button for "Don't show this again" */
        color: white;
    }

        .banner-buttons .btn-dismiss:hover[b-87mj6bdht3] {
            background-color: #d32f2f;
        }

/* Responsive Styles */
@media (max-width: 600px) {
    .custom-banner[b-87mj6bdht3] {
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start; /* Align text and buttons to the left */
    }

    .banner-buttons[b-87mj6bdht3] {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
        margin-top: 10px; /* Add space above the buttons */
    }

    .banner-text[b-87mj6bdht3] {
        font-size: 16px; /* Adjust font size for smaller screens */
        margin-bottom: 10px; /* Space between text and buttons */
    }

    .banner-buttons button[b-87mj6bdht3] {
        width: 100%; /* Make buttons full width on small screens */
    }
}
/* /Components/GuidebookCreateBanner.razor.rz.scp.css */
.custom-banner[b-05nwxkheed] {
    width: 100%;
    background-color: #4CAF50; /* Stylish background color */
    color: white;
    padding: 10px 15px; /* 10px padding for top and bottom, 15px for left and right */
    border-radius: 15px; /* Rounded borders */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Optional stylish shadow */
    margin-top: 20px; /* Margin at the top */
    margin-bottom: 20px; /* Margin at the bottom */
}

.banner-text[b-05nwxkheed] {
    font-size: 18px;
    font-weight: bold;
    flex: 1;
}

.banner-buttons[b-05nwxkheed] {
    display: flex;
    gap: 10px;
}

    .banner-buttons button[b-05nwxkheed] {
        background-color: #fff;
        color: #4CAF50;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s ease;
    }

        .banner-buttons button:hover[b-05nwxkheed] {
            background-color: #f1f1f1;
        }

    .banner-buttons .btn-dismiss[b-05nwxkheed] {
        background-color: #f44336; /* Red button for "Don't show this again" */
        color: white;
    }

        .banner-buttons .btn-dismiss:hover[b-05nwxkheed] {
            background-color: #d32f2f;
        }

/* Responsive Styles */
@media (max-width: 600px) {
    .custom-banner[b-05nwxkheed] {
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start; /* Align text and buttons to the left */
    }

    .banner-buttons[b-05nwxkheed] {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
        margin-top: 10px; /* Add space above the buttons */
    }

    .banner-text[b-05nwxkheed] {
        font-size: 16px; /* Adjust font size for smaller screens */
        margin-bottom: 10px; /* Space between text and buttons */
    }

    .banner-buttons button[b-05nwxkheed] {
        width: 100%; /* Make buttons full width on small screens */
    }
}
/* /Components/PricingTable.razor.rz.scp.css */
.pricing-container[b-mk35sx6oxi] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.pricing-table[b-mk35sx6oxi] {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    width: 250px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

    .pricing-table:hover[b-mk35sx6oxi] {
        transform: translateY(-5px);
        border-color: #007BFF;
    }

    .pricing-table.selected-plan[b-mk35sx6oxi] {
        border-color: #007BFF;
        background: #f0f8ff;
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 123, 255, 0.2);
    }

    .pricing-table h2[b-mk35sx6oxi] {
        font-size: 1.5rem;
        color: #333;
    }

    .pricing-table .price[b-mk35sx6oxi] {
        font-size: 2rem;
        color: #007BFF;
        margin: 10px 0;
    }

    .pricing-table ul[b-mk35sx6oxi] {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }

        .pricing-table ul li[b-mk35sx6oxi] {
            padding: 8px 0;
            border-bottom: 1px solid #ddd;
        }

            .pricing-table ul li:last-child[b-mk35sx6oxi] {
                border-bottom: none;
            }

    .pricing-table .btn[b-mk35sx6oxi] {
        display: inline-block;
        margin-top: 20px;
        padding: 10px 20px;
        background: #007BFF;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        transition: background 0.3s;
    }

        .pricing-table .btn:hover[b-mk35sx6oxi] {
            background: #0056b3;
        }
/* /Components/ProgressBarLoading.razor.rz.scp.css */
/*.center-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    max-width: 100vw;
}
.compress-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 25vh;
}*/
/* /Components/Wizard.razor.rz.scp.css */
.wizard[b-net68gt9sa] {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: calc(100vh - var(--mud-appbar-height) - 10px);
}

.wizard-steps[b-net68gt9sa] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    position: relative;
}
.wizard-step-container[b-net68gt9sa] {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    flex: 1;
}
.wizard-step[b-net68gt9sa] {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-circle[b-net68gt9sa] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    transition: background-color 0.3s, color 0.3s;
}

    .step-circle i[b-net68gt9sa] {
        font-size: 18px;
        color: inherit;
    }

.wizard-step.active .step-circle[b-net68gt9sa] {
    background-color: #007bff;
    color: #fff;
}

.step-title[b-net68gt9sa] {
    font-size: 14px;
    text-align: center;
    color: #333;
}

.step-line[b-net68gt9sa] {
    width: 100%;
    height: 4px;
    background-color: #ddd;
    margin-top: 8px;
    transition: background-color 0.3s;
}

    .step-line.active[b-net68gt9sa] {
        background-color: #007bff;
    }

.wizard-content[b-net68gt9sa] {
    flex: 1 1 auto;
    overflow-y: auto; /* Allow scrolling if content overflows */
    padding: 16px;
    background-color: #fff;
}

.wizard-navigation[b-net68gt9sa] {
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #f8f9fa;
    flex-wrap: wrap; /* Allow buttons to stack on small screens */
    gap: 8px;
    border-top: 1px solid #ddd;
}

.wizard-navigation-left[b-net68gt9sa] {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.wizard-navigation-right[b-net68gt9sa] {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 16px; /* Adds spacing between Next and Finish buttons */
}
/* /Layout/EmptyLayout.razor.rz.scp.css */
.login-button[b-artzg8m06s] {
    padding: 8px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 80px;
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-8qeghxmiw1] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-8qeghxmiw1] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-8qeghxmiw1] {
    font-size: 1.1rem;
}

.bi[b-8qeghxmiw1] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-8qeghxmiw1] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-8qeghxmiw1] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.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 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-8qeghxmiw1] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-8qeghxmiw1] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-8qeghxmiw1] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-8qeghxmiw1] {
        padding-bottom: 1rem;
    }

    .nav-item[b-8qeghxmiw1]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-8qeghxmiw1]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-8qeghxmiw1]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-8qeghxmiw1] {
        display: none;
    }

    .collapse[b-8qeghxmiw1] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-8qeghxmiw1] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/PostAuthorized/Dashboard.razor.rz.scp.css */
/* /Pages/PostAuthorized/OperatorComponents/OperatorGrid.razor.rz.scp.css */
.fullheight[b-93ns7p37m1] {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: calc(100vh - var(--mud-appbar-height) - 10px);
}
/* /Pages/PostAuthorized/OperatorProfile.razor.rz.scp.css */
.wizard[b-uyz9klgvf5] {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: calc(100vh - 90px);
}

.wizard-content[b-uyz9klgvf5] {
    flex: 1 1 auto;
    overflow-y: auto; /* Allow scrolling if content overflows */
    padding: 16px;
    background-color: #fff;
}

.wizard-navigation[b-uyz9klgvf5] {
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #f8f9fa;
    flex-wrap: wrap; /* Allow buttons to stack on small screens */
    gap: 8px;
    border-top: 1px solid #ddd;
}
/* /Pages/PostAuthorized/SettingComponents/BrandColorTemplate.razor.rz.scp.css */
.wizard[b-aqgpu898f1] {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: calc(100vh - 120px);
}
.wizard-content[b-aqgpu898f1] {
    flex: 1 1 auto;
    overflow-y: auto; /* Allow scrolling if content overflows */
    padding: 16px;
    background-color: #fff;
}

.wizard-navigation[b-aqgpu898f1] {
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #f8f9fa;
    flex-wrap: wrap; /* Allow buttons to stack on small screens */
    gap: 8px;
    border-top: 1px solid #ddd;
}
/* /Pages/PostAuthorized/SettingComponents/BusinessInfoTemplate.razor.rz.scp.css */
.wizard[b-vgagn4wzwy] {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: calc(100vh - 120px);
}
.wizard-content[b-vgagn4wzwy] {
    flex: 1 1 auto;
    overflow-y: auto; /* Allow scrolling if content overflows */
    padding: 16px;
    background-color: #fff;
}

.wizard-navigation[b-vgagn4wzwy] {
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #f8f9fa;
    flex-wrap: wrap; /* Allow buttons to stack on small screens */
    gap: 8px;
    border-top: 1px solid #ddd;
}
/* /Pages/PostAuthorized/SettingComponents/ConfigurationTemplate.razor.rz.scp.css */
.wizard[b-rlddrugklf] {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: calc(100vh - 120px);
}
.wizard-content[b-rlddrugklf] {
    flex: 1 1 auto;
    overflow-y: auto; /* Allow scrolling if content overflows */
    padding: 16px;
    background-color: #fff;
}

.wizard-navigation[b-rlddrugklf] {
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #f8f9fa;
    flex-wrap: wrap; /* Allow buttons to stack on small screens */
    gap: 8px;
    border-top: 1px solid #ddd;
}
/* /Pages/PostAuthorized/SettingComponents/EmailTemplate.razor.rz.scp.css */
#stripoEditorContainer[b-4f1rtiwb62] {
    height: calc(100% - 48px);
}

#externalSystemContainer[b-4f1rtiwb62] {
    background-color: darkgrey;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
}

.control-button[b-4f1rtiwb62] {
    border-radius: 17px;
    padding: 5px 10px;
    border-color: grey;
    cursor: pointer;
}

#exportButton[b-4f1rtiwb62],
#saveButton[b-4f1rtiwb62] {
    background: #b5e8b5;
}

.btn-group button[b-4f1rtiwb62] {
    padding: 5px 10px;
    cursor: pointer;
    float: left;
}

    .btn-group button.rounded-left[b-4f1rtiwb62] {
        border-radius: 17px 0 0 17px;
    }

    .btn-group button.rounded-right[b-4f1rtiwb62] {
        border-radius: 0 17px 17px 0;
    }

    .btn-group button.active[b-4f1rtiwb62] {
        background-color: darkgrey;
    }

.avatar-preview[b-4f1rtiwb62] {
    width: 34px;
    height: 34px;
    border-radius: 15px;
    background-size: cover;
    display: inline-block;
    margin-left: 5px;
}
/* Notifications styles */
.notification-zone[b-4f1rtiwb62] {
    position: fixed;
    width: 400px;
    z-index: 99999;
    right: 30px;
    bottom: 80px;
}

.alert-success[b-4f1rtiwb62] {
    color: #046904;
    background: #b5e8b5;
    padding: 5px 10px;
    border: 2px solid #046904;
    border-radius: 15px;
}

.alert-info[b-4f1rtiwb62] {
    color: hsla(215, 32%, 56%, 1);
    background: hsla(215, 87%, 94%, 1);
    padding: 5px 10px;
    border: 2px solid #046904;
    border-radius: 15px;
}
/* /Pages/PostAuthorized/UserAccount.razor.rz.scp.css */

/* /Pages/PostAuthorized/UserProfile.razor.rz.scp.css */
.wizard[b-1dp1s9ux28] {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: calc(100vh - 90px);
}

.wizard-content[b-1dp1s9ux28] {
    flex: 1 1 auto;
    overflow-y: auto; /* Allow scrolling if content overflows */
    padding: 16px;
    background-color: #fff;
}

.wizard-navigation[b-1dp1s9ux28] {
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #f8f9fa;
    flex-wrap: wrap; /* Allow buttons to stack on small screens */
    gap: 8px;
    border-top: 1px solid #ddd;
}
/* /Pages/PostAuthorized/VendorComponents/VisitorGuestGrid.razor.rz.scp.css */
.fullheight[b-eo5tcooaes] {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: calc(100vh - var(--mud-appbar-height) - 10px);
}
