@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}



*/

@layer base {
    html {
        font-family: "Proxima Nova", system-ui, sans-serif;
    }
}

.apple_pagination {
    background: #f1f1f1;
    border: 1px solid #e5e5e5;
    text-align: center;
    padding: 1em;
    cursor: default; }
.apple_pagination a, .apple_pagination span {
    padding: 0.2em 0.3em; }
.apple_pagination .disabled {
    color: #aaaaaa; }
.apple_pagination .current {
    font-style: normal;
    font-weight: bold;
    background-color: #bebebe;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    line-height: 1.5;
    -moz-border-radius: 1em;
    -webkit-border-radius: 1em;
    border-radius: 1em;
    text-shadow: rgba(255, 255, 255, 0.8) 1px 1px 1px; }
.apple_pagination a {
    text-decoration: none;
    color: black; }
.apple_pagination a:hover, .apple_pagination a:focus {
    text-decoration: underline; }

/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

.image_class{
    height: 200px;
    weight: 200px;
    object-fit: cover;
}

.initials-avatar {
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.hidden {
    opacity: 0;
    transition: opacity 2s ease; /* adjust the transition duration as needed */
}

.wrapper{
    margin-top: 80px;
}

.home_index{
    margin-top: 80px;
}

.nav_header{
    margin-bottom: 100px;
}

.menu-card{
    position: fixed;
    height: 300px;
    width: 200px;
    background-color: slategray;
    /*top: 0px;*/
    right: 10px;
    transition-timing-function: ease-in;

    /* Quick on the way out */
    transition: 0.9s;

    /* Hide thing by pushing it outside by default */
    transform: translateY(0%);
}

.product-details-image {
    height: 200px;
    width: 200px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #475569;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /*display: none;*/
}

.overlay-hide {
    display: none;
}

.state-modal{
    height: 400px;
    width: 50%;
}

.state-modal::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.state-modal {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}


@media screen and (max-width: 768px) {

    .product-search-box{
        width: 180px
    }

    .logo-text{
        font-size: 14px;
    }

    .logo{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .category, .nav-favourite, .nav-account-icon, .admin-side-panel, .nav-state, .side-panel, .log-in-button{
        display: none;
    }

    .state-modal{
        margin-top: 100px;
        width: 100%;
    }


}

@media screen and (min-width: 768px) {
    .menu-card{
        display: none;
    }

    .side-bar-toggle{
        display: none;
    }
}
.canvas{
    height: 600px;
    background-color: red;
}



