/* _content/TeamProjectYay/Components/Layout/LoginMenu.razor.rz.scp.css */
.header[b-pe89ai5ab9] {
    position: relative;
    padding: 10px;
}

.btn-primary[b-pe89ai5ab9] {
    /* background-color:  rgb(5, 39, 103);
    border: none;
    color: white; */
    /* font-size: 1.4em; */
    padding: 0.6em 0.8em;
    border-radius: 1.5em;
    border: none;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    outline: none;
}

.btn-primary:active[b-pe89ai5ab9] {
    background-color: transparent;
}

.container[b-pe89ai5ab9] {
    position: relative;
    padding: 2px;
    background: linear-gradient(150deg, rgb(74, 121, 248) 0%, #83cf89 80%);
    border-radius: 1.5em;
    transition: all 0.4s ease;
    box-shadow: 2px 2px 3px #000000b4;
}

.container[b-pe89ai5ab9]::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    border-radius: 0.9em;
    z-index: -10;
    filter: blur(1.2em);
    opacity: 0;
    transition: opacity 0.4s ease, filter 0.4s ease;
    background: linear-gradient(180deg, rgb(16, 80, 255) 0%, #0bb919 80%);
}

.container:hover[b-pe89ai5ab9]::before, .hover-simulated[b-pe89ai5ab9]::before {
    opacity: 1;
}
.container:active[b-pe89ai5ab9]::before {
    filter: blur(0.2em);
}

.overlay[b-pe89ai5ab9] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 999; /* sits above page but below login box */
}

.text-danger[b-pe89ai5ab9] {
    color: red;
    margin-top: 10px;
    font-size: .8rem;
}

.login-box[b-pe89ai5ab9] {
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    border: 1px solid #ccc;
    padding: 15px;
    width: 250px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 1000; /* above overlay */
}

.form-group[b-pe89ai5ab9] {
  position: relative;
  padding: 20px 0 0;
  width: 100%;
  max-width: 180px;
}

.form-field[b-pe89ai5ab9] {
  font-family: inherit;
  width: 100%;
  border: none;
  border-bottom: 2px solid #9b9b9b;
  outline: 0;
  font-size: 17px;
  color: #fff;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}

.form-field[b-pe89ai5ab9]::placeholder {
  color: transparent;
}

.form-field:placeholder-shown ~ .form-label[b-pe89ai5ab9] {
  font-size: 17px;
  cursor: text;
  top: 20px;
}

.form-label[b-pe89ai5ab9] {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  color: #9b9b9b;
  pointer-events: none;
}

.form-field:focus[b-pe89ai5ab9] {
  padding-bottom: 6px;
  font-weight: 700;
  border-width: 3px;
  border-image: linear-gradient(to right, rgb(74, 121, 248) 0%, #83cf89 80%);
  border-image-slice: 1;
}

.form-field:focus ~ .form-label[b-pe89ai5ab9] {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  color: #38caef;
  font-weight: 700;
}

/* reset input */
.form-field:required[b-pe89ai5ab9], .form-field:invalid[b-pe89ai5ab9] {
  box-shadow: none;
}



/* From Uiverse.io by mrhyddenn */ 
.form-group[b-pe89ai5ab9] {
  position: relative;
  padding: 20px 0 0;
  width: 100%;
  max-width: 180px;
}

.form-field[b-pe89ai5ab9] {
  font-family: inherit;
  width: 100%;
  border: none;
  border-bottom: 2px solid #9b9b9b;
  outline: 0;
  font-size: 17px;
  color: #5e5e5e;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}

.form-field[b-pe89ai5ab9]::placeholder {
  color: transparent;
}

.form-field:placeholder-shown ~ .form-label[b-pe89ai5ab9] {
  font-size: 17px;
  cursor: text;
  top: 20px;
}

.form-label[b-pe89ai5ab9] {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  color: #9b9b9b;
  pointer-events: none;
}

.form-field:focus[b-pe89ai5ab9] {
  padding-bottom: 6px;
  font-weight: 700;
  border-width: 3px;
  border-image: linear-gradient(to right, rgb(74, 121, 248) 0%, #83cf89 80%);
  border-image-slice: 1;
}

.form-field:focus ~ .form-label[b-pe89ai5ab9] {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  color:  rgb(74, 121, 248);
  font-weight: 700;
}

/* reset input */
.form-field:required[b-pe89ai5ab9], .form-field:invalid[b-pe89ai5ab9] {
  box-shadow: none;
}




.btn-success[b-pe89ai5ab9] {
    margin-top: 15px;
    background-color: rgb(93, 133, 245);
}

@media (max-width: 641px) {
    .header[b-pe89ai5ab9] {
        position: fixed;
        right: 10px;
    }
}
/* _content/TeamProjectYay/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-sejot69b67] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-sejot69b67] {
    flex: 1;
}

.sidebar[b-sejot69b67] {
    background-image: linear-gradient(150deg, rgb(74, 121, 248) 0%, #83cf89 80%);
}

.top-row[b-sejot69b67] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-sejot69b67]  a, .top-row[b-sejot69b67]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-sejot69b67]  a:hover, .top-row[b-sejot69b67]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-sejot69b67]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-sejot69b67] {
        justify-content: space-between;
    }

    .top-row[b-sejot69b67]  a, .top-row[b-sejot69b67]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-sejot69b67] {
        flex-direction: row;
    }

    .sidebar[b-sejot69b67] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-sejot69b67] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-sejot69b67]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-sejot69b67], article[b-sejot69b67] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-sejot69b67] {
    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-sejot69b67] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/TeamProjectYay/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-jeissubdpq] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-jeissubdpq] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-jeissubdpq] {
    min-height: 3.5rem;
    /* background-color: rgba(0,0,0,0.4); */
    border-bottom: grey solid 1px;
}

.navbar-brand[b-jeissubdpq] {
    font-size: 1.1rem;
}

.bi[b-jeissubdpq] {
    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-jeissubdpq] {
    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-jeissubdpq] {
    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-jeissubdpq] {
    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-jeissubdpq] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-jeissubdpq] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-jeissubdpq] {
        padding-bottom: 1rem;
    }

    .nav-item[b-jeissubdpq]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-jeissubdpq]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-jeissubdpq]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-jeissubdpq] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-jeissubdpq] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-jeissubdpq] {
        display: none;
    }

    .nav-scrollable[b-jeissubdpq] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/TeamProjectYay/Components/Layout/ProfileHeaderMenu.razor.rz.scp.css */
img[b-4w755hspuy] {
    height: 45px;
    cursor: pointer;
    border-radius: 100%;
    /* margin-right: -40px; */
}

.Profile-btn[b-4w755hspuy] {
    background: none;
    border: none;
    cursor: pointer;
    width: 10px;
    margin-right: 50px;
}

.profile-box[b-4w755hspuy] {
    position: absolute; /* or fixed, depending on your layout */
    top: 55px;
    right: 20px;
    /* transform: translate(-50%, -50%); */
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.name[b-4w755hspuy] {
    font-size: 1.4rem;
}

.username[b-4w755hspuy] {
    margin-top: -15px;
    font-size: .9rem;
    color: rgb(172, 172, 172);
}

.profile-box img[b-4w755hspuy] {
    height: 80px;
    width: 80px;
    border-radius: 100%;
    margin-bottom: 10px;
    cursor: default;
}

.profile-box a[b-4w755hspuy] {
    background: none;
    border: none;
    color: rgb(74, 121, 248);
    margin-left: 0px;
    margin: 3px;
    margin-bottom: 10px;
}

.btn-danger[b-4w755hspuy] {
    align-self: bottom;
}

.overlay[b-4w755hspuy] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 999; /* sits above page but below login box */
}

@media (max-width: 641px) {
    .profile-header-menu[b-4w755hspuy] {
        position: fixed;
        right: 10px;
    }
    .name[b-4w755hspuy] {
        text-align: center;
    }
}
/* _content/TeamProjectYay/Components/Pages/Account.razor.rz.scp.css */
h1[b-ez7072le1u] {
    text-align: center;
    Background: linear-gradient(150deg, rgb(74, 121, 248) 0%, #83cf89 80%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem;
}

h2[b-ez7072le1u] {
    Background: linear-gradient(150deg, rgb(74, 121, 248) 0%, #83cf89 80%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    text-align: center;
}

.userFlexbox[b-ez7072le1u] {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 35px;
}

img[b-ez7072le1u] {
    width: 200px;
    height: auto;
    margin-bottom: 5px;
}

.imgDiv[b-ez7072le1u] {
    text-align: center;
    display: flex;
    flex-direction: column;
}

button[b-ez7072le1u] {
    height: 2rem;
    width: 13rem;
    margin-top: 3rem;
    background: linear-gradient(150deg, rgb(74, 121, 248) 0%, #83cf89 80%);
    border-radius: 0.5rem;
    border: none;
    font-size: 1.2rem;
    transition: all 400ms;
    cursor: pointer;
}

button:hover[b-ez7072le1u] {
    cursor: pointer;
    scale: 103%;
}

.editDiv[b-ez7072le1u] {
    display: flex;
    flex-direction: column;
}

input[b-ez7072le1u] {
    margin: 0.5rem 0;
    width: 13rem;
    background-color: inherit;
    color: #333;
    border: none;
    outline: none;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(150deg, rgb(74, 121, 248) 0%, #83cf89 80%) 1;
    transition: all 400ms;
}

input:hover[b-ez7072le1u] {
  scale: 103%;
}

.modalBackdrop[b-ez7072le1u] {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modalContent[b-ez7072le1u] {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
}
/* _content/TeamProjectYay/Components/Pages/AllRecipes.razor.rz.scp.css */
.recipe-grid[b-8g68oq9fzw] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

h1[b-8g68oq9fzw] {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  Background: linear-gradient(150deg, rgb(74, 121, 248) 0%, #83cf89 80%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4rem;
}
/* _content/TeamProjectYay/Components/Pages/Home.razor.rz.scp.css */
h1[b-fcvfpx1rz6] {
  text-align: center;
  margin-top: 40px;
  Background: linear-gradient(150deg, rgb(74, 121, 248) 0%, #83cf89 80%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4rem;
}

.home-boxes[b-fcvfpx1rz6] {
  display: flex;
  justify-content: space-around; /* spread boxes evenly */
  margin-top: 6vw;
}

.home-box[b-fcvfpx1rz6] {
  flex: 1;
  margin: 0 10px;
  padding: 100px 20px;
  border-radius: 20px;
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  color: white;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.home-box p[b-fcvfpx1rz6] {
  text-decoration: none;
  color: inherit; /* inherit white text */
  position: relative;
  z-index: 2; /* keep text above background */
  display: inline-block;
  padding: 10px 20px;
  border-radius: 12px;
  color: white;
  z-index: 2;
}

.home-box p[b-fcvfpx1rz6]::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        ellipse at center,
        rgba(94, 93, 93, 0.6) 60%,   /* solid dark center */
        rgba(119, 118, 118, 0) 100%     /* fade out at edges */
    );
    filter: blur(8px);        /* soften the gradient edge */
    z-index: -1;    
    pointer-events: none;
}

.home-box[b-fcvfpx1rz6]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2); /* dark overlay for readability */
  border-radius: inherit;
  z-index: 1;
}

.home-box:hover[b-fcvfpx1rz6] {
  transform: scale(1.05);
}

/* Specific backgrounds */
.all-recipes[b-fcvfpx1rz6] {
  background-image: url("/images/home1.jpg");
}

.shopping-list[b-fcvfpx1rz6] {
  background-image: url("images/home2.jpg");
}

.my-recipes[b-fcvfpx1rz6] {
  background-image: url("images/home3.jpg");
}

.sign-up[b-fcvfpx1rz6] {
    background-image: url("images/home4.jpg");
}

.sign-up[b-fcvfpx1rz6]::before {
    background: rgba(255, 255, 255, 0.1);
}
/* _content/TeamProjectYay/Components/Pages/Profile.razor.rz.scp.css */
.heading[b-ib26mdinvb] {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 1rem;
}

.heading h1[b-ib26mdinvb] {
    grid-column: 2;
    text-align: center;
    margin: 0;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    Background: linear-gradient(150deg, rgb(74, 121, 248) 0%, #83cf89 80%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem;
}

.heading button[b-ib26mdinvb] {
    grid-column: 3;
    justify-self: end;
    background-color: #76d47e;
    border: none;
    padding: 3px 8px;
    transition: all 0.3s ease;
}

.heading button:hover[b-ib26mdinvb] {
    background-color: #67d16d;
    scale: 105%;
    transition: all 0.3s ease;
}

.recipe-grid[b-ib26mdinvb] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.heading button[b-ib26mdinvb] {
    margin-left: auto;
}

button[b-ib26mdinvb] {
    border-radius: 10px;
    background-color: white;
    border: solid 2px;
    margin: 10px;
}

button:hover[b-ib26mdinvb] {
    cursor: pointer;
}

.modalBackdrop[b-ib26mdinvb] {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
    z-index: 9999;
}

.modalContent[b-ib26mdinvb] {
    background: white;
    padding: 20px;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
}

.modalContent h2[b-ib26mdinvb] {
    position: static;
    transform: none;
    text-align: center;
    margin: 10px 0;
}

.modalContent input[b-ib26mdinvb], .modalContent textarea[b-ib26mdinvb] {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    padding: .5rem;
    box-sizing: border-box;
}

.modalContent button[b-ib26mdinvb] {
    margin: 5px;
}

#warning[b-ib26mdinvb] {
    font-size: small;
    max-width: 100%;
    color: darkred;
    margin-bottom: 1rem;
}
/* _content/TeamProjectYay/Components/Pages/ShoppingList.razor.rz.scp.css */
.recipe-grid[b-h1o37aurqs] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

h1[b-h1o37aurqs], h2[b-h1o37aurqs]{
    text-align: center;
    margin-bottom: 20px;
}

.no-added-recipes-a[b-h1o37aurqs] {
    Background: linear-gradient(150deg, rgb(74, 121, 248) 0%, #83cf89 80%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ingredient-list[b-h1o37aurqs]  {
    margin-top: 20px;
}

.ingredient-item[b-h1o37aurqs] {
    display: flex;
    align-items: center;
    margin-left: 10vw;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

input[type="checkbox"][b-h1o37aurqs] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.ingredient-item label[b-h1o37aurqs] {
  cursor: pointer;        /* keep the pointer cursor */
  user-select: none;      /* prevent text highlighting */
}

.checked-item[b-h1o37aurqs] {
  position: relative;
  background: linear-gradient(150deg, rgb(74, 121, 248) 0%, #83cf89 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.checked-item[b-h1o37aurqs]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(150deg, rgb(74, 121, 248) 0%, #83cf89 80%); /* or match your gradient */
}

.clear-ingredients-button[b-h1o37aurqs] {
    /* margin-top: 40px; */
    margin-bottom: 2%;
    margin-right: 10px;
    background-color: rgb(74, 121, 248);
    color: #e9e9e9;
    transition: background-color 0.3s ease;
}

.clear-ingredients-button:hover[b-h1o37aurqs] {
    background-color: #3765b9;
    transition: background-color 0.3s ease;
}

.clear-all-button[b-h1o37aurqs] {
    /* margin-top: 40px; */
    margin-bottom: 2%;
}

.no-added-recipes[b-h1o37aurqs] {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 2rem;
}

.progress-circle[b-h1o37aurqs] {
    position: absolute;
    transform: translate(440%, 0%);
    display: block;
    width: 200px;
}

.circle-bg[b-h1o37aurqs] {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}

.circle[b-h1o37aurqs] {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke: #4caf50; /* green progress color */
    transition: stroke-dasharray 0.3s ease;
}

.percentage[b-h1o37aurqs] {
    fill: #666;
    font-family: sans-serif;
    font-size: 0.5em;
    text-anchor: middle;
}
/* _content/TeamProjectYay/Components/Pages/Signup.razor.rz.scp.css */
/* From Uiverse.io by HoseinParvaresh */ 
[b-2tlbj46x4f]::selection {
  background-color: gray;
}

.container[b-2tlbj46x4f] {
  margin-top: calc(3vw + 2vh);
  display: flex;
  justify-content: center;
  align-items: center;
}

.form[b-2tlbj46x4f] {
  /* width: 90vw; */
  /* height: 100vh; */
  /* background-image: linear-gradient(to bottom, #424242, #212121); */
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 0.5rem;
}

.title[b-2tlbj46x4f] {
  Background: linear-gradient(150deg, rgb(74, 121, 248) 0%, #83cf89 80%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 6rem;
}

.input[b-2tlbj46x4f] {
  margin: 0.5rem 0;
  padding: 1rem 0.5rem;
  width: 20rem;
  background-color: inherit;
  color: #333;
  border: none;
  outline: none;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(150deg, rgb(74, 121, 248) 0%, #83cf89 80%) 1;
  transition: all 400ms;
}
.input:hover[b-2tlbj46x4f] {
  scale: 103%;
}
.btn[b-2tlbj46x4f] {
  height: 3rem;
  width: 20rem;
  margin-top: 3rem;
  background: linear-gradient(150deg, rgb(74, 121, 248) 0%, #83cf89 80%);
  border-radius: 0.5rem;
  border: none;
  font-size: 1.2rem;
  transition: all 400ms;
  cursor: pointer;
}
.btn:hover[b-2tlbj46x4f] {
  background-color: antiquewhite;
  box-shadow: none;
  scale: 103%;
}

.error[b-2tlbj46x4f] {
    color: red;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.overlay[b-2tlbj46x4f] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* greyed out background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999; /* ensure it’s on top */
}

.popup[b-2tlbj46x4f] {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.popup p[b-2tlbj46x4f], .popup .btn[b-2tlbj46x4f] {
    margin-top: 1rem;
}
/* _content/TeamProjectYay/Components/Shared/RecipeCard.razor.rz.scp.css */
.recipe-card[b-46j55ai248] {
    width: 240px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform .15s ease;
}

.recipe-card:hover[b-46j55ai248] {
    transform: scale(1.03);
}

.inshoppinglist[b-46j55ai248] {
    position: absolute;
    padding-left: 4px;
    padding-right: 4px;
    background-image: linear-gradient(to right, rgb(74, 121, 248) 0%, #83cf89 80%);
    color: #e9e9e9;
    border-radius: 10px;
}

.recipe-image[b-46j55ai248] {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.rp-modal-overlay[b-46j55ai248] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
    z-index: 9999;
}

.rp-modal[b-46j55ai248] {
    background: white;
    width: 90%;
    max-width: 700px;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.rp-modal-image[b-46j55ai248] {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.close-btn[b-46j55ai248] {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: #aaa;
    color: white;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
}

.add-btn[b-46j55ai248] {
    background-color: #5fca68;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-btn:hover[b-46j55ai248] {
    background-color: #43b44c;
    transition: background-color 0.3s ease;
}

.remove-btn[b-46j55ai248] {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.remove-btn:hover[b-46j55ai248] {
    background-color: #c73b3b;
    transition: background-color 0.3s ease;
}

.edit-btn[b-46j55ai248] {
    border-radius: 10px;
    background-color: white;
    border: solid 2px;
    margin: 10px;
    cursor: pointer;
}
