@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.limited-width {
    max-width: 200px;
}

.txt-blue {
    font-weight: 600;
    font-size: 24px;
    line-height: 25.2px;
    color: #418BFF;
}

.bg-gr {
    background: linear-gradient(270deg, #09326e, #197CFF);
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
    color: #fff !important;
    border: none;
}

.wide-table {
    width: 95vw;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 60px auto;
}

.header-bg {
    background-color: #f1f1f1;
    font-weight: 500;
    text-align: center;
    color: #6D6D75;
    font-size: 13px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #197CFF;
    border: none;
}

.btn-primary:hover {
    background-color: #09326e;
}

.reply-box {
    height: 100px;
    resize: vertical;
    width: 100%;
}

.container {
    padding-bottom: 20px;
}

th, td {
    padding: 15px;
    text-align: center;
}

.wd-small {
    width: 100px;
}

.navbar {
    background-size: cover;
    background-repeat: no-repeat;
    height: 120px;
    padding: 0 50px;
    position: relative;
    z-index: 1020;
}

.navbar-icon {
    height: 20px;
    margin-right: 5px;
}

.btn-white {
    background-color: #fff;
    color: #000;
    border: 0.5px solid #DCDCDC;
    width: 74px;
    height: 40px;
    border-radius: 10px;
    font-weight: 450;
    font-size: 14px;
    padding: 10px 16px;

}

.filter-menu * {
    margin: 0;
    padding: 0;
}

.filter-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2040;
    margin-top: -27px;
    height: 54px;
    padding: 8px;
    border-radius: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 830px;
}

.filter {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 600px;
}

#store {
    width: 200px;
    height: 36px;
    border-radius: 10px;
    border: 0.5px solid #ccc;
    padding: 10px 16px;
    font-size: 13px;
}


#application {
    width: 275px;
    height: 36px;
    border-radius: 10px;
    border: 0.5px solid #ccc;
    padding: 10px 16px;
    font-size: 13px;
}

#rating {
    width: 190px;
    height: 36px;
    border-radius: 10px;
    border: 0.5px solid #ccc;
    padding: 10px 16px;
    font-size: 13px;
}

.blue-button {
    width: 70px;
    height: 36px;
    padding: 10px 16px;
    border-radius: 10px;
    background-color: #418BFF;
    color: white;
    border: none;
    display: inline-block;
    text-align: center;
    line-height: 16px;
    cursor: pointer;
    font-size: 13px;
}

.generate-ai-reply {
    border: 0.5px solid #DCDCDC;
    background: none;
    cursor: pointer;
    padding: 5px;
}

.generate-ai-reply .icon {
    width: 20px;
}

.generate-ai-reply:hover .icon {
    filter: brightness(0.5);
}

.rating-icon {
    width: 15px;
    margin-top: -3px;
}

.login-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 300px;
    height: 250px;
    border-radius: 14px;
    padding: 16px;
    gap: 12px;
    background-color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.login-branding {
    width: 300px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 32px;
    line-height: 25.2px;
    color: #418BFF;
}

.form-field {
    background-color: #ffffff;
    padding: 5px;
}

.popup {
    position: fixed;
    width: 800px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    justify-content: center;
    align-items: center;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0.1, 0.1, 0.1, 0.1);
    z-index: 1000;
}

.popup-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #FFF;
    opacity: 0.8;
    transition: 0.3s ease-out;

    &:before,
    &:after {
        content: "";
        position: absolute;
        width: 80%;
        height: 2px;
        background-color: #36658d;
        left: 50%;
        top: 50%;
    }

    &:after {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    &:before {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    &:hover,
    &:focus {
        transform: scale(1.15);
        opacity: 1;
        cursor: pointer;
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}

