@keyframes show-toast{
    0% {bottom: -100%}
    20% {bottom: 100px}
    80% {bottom: 100px}
    100% {bottom: -100%}
}

.show-notification{
    position: fixed;
    bottom: 100%;
    right: 20px;
    animation-name: show-toast;
    animation-duration: 8s;
    z-index: 99;
}

.btn{
    padding: 2px 1.75em;
    font-size: 12px;
    cursor: pointer;
}

.main-search.fancy .field-holder input[type="text"]{
    color: #000000 !important;
}

table > tbody > tr > td{
    border: none !important;
}

#opening_hours select{
    padding: 5px 10px !important;
}
.btn-success.add_hour{
    padding: 7px 15px 7px 15px;
}

/* hide radio button */
.payment-method [type=radio]{
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Image style */
.payment-method [type=radio] + img{
    cursor: pointer;
    padding: 5px;
}

/* Checked style */
.payment-method [type=radio]:checked + img{
    outline: 2px solid #ff0000;
}

@media only screen and (max-width: 480px) {
    a.get-start-btn{
        display: block;
        margin-top: 15px !important;
        margin-left: 0 !important;
    }
    .main-search-bar{
        padding-top: 100px !important;
        padding-bottom: 50px !important;
        background-position: left !important;
    }
    .user-dashboard{
        width: 100% !important;
    }
    .menu-itam-holder .quantity{
        right: 0 !important;
        margin-top: -30px !important;
    }
    .table.opening_hours{
        width: 100% !important;
    }
    .table td{
        padding: 0.5rem !important;
    }


}

table td, table th{
    line-height: 1rem !important;
}

/* ==========================================================================
   FULL-WIDTH DASHBOARD SHELL
   --------------------------------------------------------------------------
   The account dashboard (cover + sidebar + content) used Bootstrap's fixed
   max-width .container, which left large empty margins on wide screens. This
   widens just the dashboard shell to fill the viewport — matching the
   krishokcard layout — while leaving the site's global .container untouched
   (the marketing pages, navbar and modals still centre as before).

   Scoped to the .dashboard-fluid class added on the two shell wrappers
   (accounts/dashboard_base.html and accounts/includes/cover.html), so nothing
   else on the page changes. Colours are inherited from the theme; this rule
   only affects width and horizontal padding.
   ========================================================================== */
.dashboard-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .dashboard-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* --------------------------------------------------------------------------
   FULL-WIDTH CONTENT PANEL
   The theme's cs-foodbakery-plugin.css pins the dashboard content panel to a
   fixed "width: 847px; margin: 0 auto" (a legacy centered-card layout), which
   left the body narrower than the now-full-width navbar/cover/sidebar. Since
   the content already sits inside the .content-column grid cell, we let the
   panel fill that cell so the whole dashboard reads edge to edge.
   Loaded after the theme CSS, so this wins on the cascade.
   -------------------------------------------------------------------------- */
.content-column .user-dashboard {
    width: 100%;
    margin: 0;
}
