/* _content/gotnochill-server/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-7xigy6ktxd] {
    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-7xigy6ktxd] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/gotnochill-server/Components/Pages/Home.razor.rz.scp.css */
/* Existing styles */

/* General Styles */
*[b-8fnumcwdh2] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

body[b-8fnumcwdh2] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa;
    color: #2E7D32;
}

.navbar[b-8fnumcwdh2] {
    background: #2E7D32;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.logo[b-8fnumcwdh2] {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links[b-8fnumcwdh2] {
    display: flex;
    gap: 2rem;
}

    .nav-links a[b-8fnumcwdh2] {
        color: white;
        text-decoration: none;
    }

.hero[b-8fnumcwdh2] {
    background: linear-gradient(rgba(46, 125, 50, 0.1), rgba(46, 125, 50, 0.1));
    text-align: center;
    padding: 4rem 2rem;
}

    .hero h1[b-8fnumcwdh2] {
        color: #2E7D32;
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

.order-btn[b-8fnumcwdh2] {
    background: #4CAF50;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
}

.categories[b-8fnumcwdh2] {
    padding: 2rem;
    flex: 1;
}

.section-title[b-8fnumcwdh2] {
    color: #2E7D32;
    margin: 2rem 0;
    text-align: center;
}

/* Service Area Check Styles */
.service-check[b-8fnumcwdh2] {
    padding: 2rem;
    text-align: center;
    background-color: #f8f9fa;
}

    .service-check h2[b-8fnumcwdh2] {
        color: #2E7D32;
        margin-bottom: 1rem;
        font-size: 2rem;
    }

    .service-check input[b-8fnumcwdh2] {
        padding: 0.5rem;
        font-size: 1rem;
        margin-right: 1rem;
        border: 1px solid #ccc;
        border-radius: 4px;
        width: 200px;
    }

.check-btn[b-8fnumcwdh2] {
    background: #4CAF50;
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

    .check-btn:hover[b-8fnumcwdh2] {
        background: #45A049;
    }

.service-check p[b-8fnumcwdh2] {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #2E7D32;
}

.category-grid[b-8fnumcwdh2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.category-card[b-8fnumcwdh2] {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: white;
}

    .category-card:hover[b-8fnumcwdh2] {
        transform: scale(1.05);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    }

.category-image[b-8fnumcwdh2] {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.category-card p[b-8fnumcwdh2] {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2E7D32;
    text-align: center;
}

footer[b-8fnumcwdh2] {
    background: #2E7D32;
    color: white;
    padding: 2rem;
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

    footer h3[b-8fnumcwdh2] {
        margin-bottom: 1rem;
    }

    footer ul[b-8fnumcwdh2] {
        list-style: none;
    }

        footer ul li[b-8fnumcwdh2] {
            margin: 0.5rem 0;
        }

    footer a[b-8fnumcwdh2] {
        color: white;
        text-decoration: none;
    }
/* _content/gotnochill-server/Components/Pages/Orders.razor.rz.scp.css */
/* Existing styles */

/* General Styles */
*[b-c7dguan0dx] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

body[b-c7dguan0dx] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa;
    color: #2E7D32;
}

.navbar[b-c7dguan0dx] {
    background: #2E7D32;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.logo[b-c7dguan0dx] {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links[b-c7dguan0dx] {
    display: flex;
    gap: 2rem;
}

    .nav-links a[b-c7dguan0dx] {
        color: white;
        text-decoration: none;
    }

.hero[b-c7dguan0dx] {
    background: linear-gradient(rgba(46, 125, 50, 0.1), rgba(46, 125, 50, 0.1));
    text-align: center;
    padding: 4rem 2rem;
}

    .hero h1[b-c7dguan0dx] {
        color: #2E7D32;
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

.order-btn[b-c7dguan0dx] {
    background: #4CAF50;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
}

.categories[b-c7dguan0dx] {
    padding: 2rem;
    flex: 1;
}

.section-title[b-c7dguan0dx] {
    color: #2E7D32;
    margin: 2rem 0;
    text-align: center;
}

/* Service Area Check Styles */
.service-check[b-c7dguan0dx] {
    padding: 2rem;
    text-align: center;
    background-color: #f8f9fa;
}

    .service-check h2[b-c7dguan0dx] {
        color: #2E7D32;
        margin-bottom: 1rem;
        font-size: 2rem;
    }

    .service-check input[b-c7dguan0dx] {
        padding: 0.5rem;
        font-size: 1rem;
        margin-right: 1rem;
        border: 1px solid #ccc;
        border-radius: 4px;
        width: 200px;
    }

.check-btn[b-c7dguan0dx] {
    background: #4CAF50;
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

    .check-btn:hover[b-c7dguan0dx] {
        background: #45A049;
    }

.service-check p[b-c7dguan0dx] {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #2E7D32;
}

.category-grid[b-c7dguan0dx] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.category-card[b-c7dguan0dx] {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: white;
}

    .category-card:hover[b-c7dguan0dx] {
        transform: scale(1.05);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    }

.category-image[b-c7dguan0dx] {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.category-card p[b-c7dguan0dx] {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2E7D32;
    text-align: center;
}

footer[b-c7dguan0dx] {
    background: #2E7D32;
    color: white;
    padding: 2rem;
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

    footer h3[b-c7dguan0dx] {
        margin-bottom: 1rem;
    }

    footer ul[b-c7dguan0dx] {
        list-style: none;
    }

        footer ul li[b-c7dguan0dx] {
            margin: 0.5rem 0;
        }

    footer a[b-c7dguan0dx] {
        color: white;
        text-decoration: none;
    }
