@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
#siba-app {
    width:100%;
    height:100vh;
    overflow: hidden;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    position: relative;
}
.bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    position: absolute;
}
#bg-section, #rot-section {
    width: 100%;
    height: 100%;
    position: absolute;
}
#bg-section {
    background-color: #000;
    opacity: 0.7;
}
#rot-header, #rot-content, #rot-footer,#rate-content {
    padding: 2rem;
}
#rot-footer {
    padding: 0 2rem;
}
#rot-header {
    display: flex;
    gap:2rem;
}
#attendant-wrapper {
    width: 20%;
    display: flex;
    flex-direction: column;
}
#attendant-profile{
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#attendant-photo {
    border: 1px solid #FFF;
    border-radius: 5px;
    background-color: #B3E5FC;
    width: 200px;
    padding: 0.25rem;
    height: 300px;
}
#attendant-id {
    width: 100%;
    text-align: center;
    margin-top: 8px;
    background-color: #74cbf3;
    padding: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
} 
#greeting-wrapper {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    line-height: 1.2;
}
#greeting-text, #greeting-text-description {
    width: 100%;
    font-size: 5.5rem;
    font-weight: 600;
    text-align: center;
    color: #FFF;
}
#greeting-text-description {
    font-size: 3.5rem;
    letter-spacing: 0.25rem;
}
#rate-content {
    display: flex;
    gap:2rem;
    justify-content: space-around;
    /* background-color: #FFF; */
    border-radius: 8px;
}
.rate-item {
    border-radius: 8px;
    background-color: #FFF;
    padding: 0.55rem 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
.rate-item-img {
    width: 128px;
    height: 128px;
}
.rate-item-caption {
    margin-top: 8px;
    width: 100%;
    display: block;
    font-size: 1.6rem;
    color: #000;
    text-align: center;
}
.rate-item:hover {
    background-color: #FFF;
    cursor:pointer;
    transform: scale(1.1);
    border-radius: 8px;
}
.rate-item:hover > div.rate-item-caption {
    color: #000;
}
#rot-footer-text, #rot-footer-toilet-id {
    width: 100%;
    text-align: center;
    font-size: 2.0rem;
    color: #FFF;
    letter-spacing: 0.25rem;
}
#full-screen {
    padding:0.25rem 0.875rem;
    display: flex;
    position: fixed;
    right: 0;
    gap:1rem;
    opacity: 0;
    background-color: #000;
}
#full-screen:hover {
    opacity:1;
}
#full-screen > span.bi {
    font-size: 2.5rem;
    color: #FFF;
}
#barcode {
    position: fixed;
    bottom: 1.5rem;
    right: 2rem;
}
#barcode > img {
    width: 120px;
    height: 120px;
}