/* LOGIN */
#login-section .inner{
    align-items: center;
    flex-direction: column;
    gap: 40px;
    height: 100%;
    display: flex; 
    justify-content: center;
}

#login-section-input-form{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    margin-top: 40vh;
}

#login-section-input-user {
    width: 300px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    border: none;
    padding-left: 12px;
    font-size: 1rem;
    font-family: "Work Sans", serif;
}

#login-section-input-password-inner {
    display:flex;
    flex-direction: row;
}

#login-section-input-password {
    width: 300px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    border: none;
    padding-left: 12px;
    font-size: 1rem;
    font-family: "Work Sans", serif;
}

#login-section-input-password-visible{
    width: 40px;
    height: 40px;
    margin-left: -40px;
    cursor: pointer;
    background-image: url(../assets/img/visibility_24dp_FILL0_wght400_GRAD0_opsz24.svg);
    background-position: center center;
    background-repeat: no-repeat;
    filter: invert(1);
    opacity: 0.5;
}

#login-section-input-password-visible.active{
    background-image: url(../assets/img/visibility_off_24dp_FILL0_wght400_GRAD0_opsz24.svg);
    opacity:1;
}

#login-section-input-submit{
    padding: 12px 16px;
    cursor: pointer;
    background-color: #fff;
    color: #000;
    border-radius: 4px;
    margin-top: 12px;
    font-family: "Work Sans", serif;
}


/* GENERAL */
.title {
    font-size: 32px;
    font-weight: 600;
    margin: 30px;
    margin-bottom: 5px;
}

.sub-title {
    font-size: 18px;
    font-weight: 600;
    margin-left: 30px;
}

.back-button{
    border-radius: 4px;
    margin: 30px;
    padding: 10px;
    border: 1px solid;
    width: 140px;
    text-align: center;
    cursor: pointer;
    background-color: #121212;
    color: #fff;
}

.section {
    display: none;
}

.section.active {
    display: block;
}


/* APP LIST */
#app-list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 50px;
    margin: 30px;
}

.app-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border: 1px solid;
    border-radius: 4px;
}

.app-name{
    font-size: large;
    font-weight: bold;
    margin-bottom: 30px;
}

.app-button{
    padding: 8px 16px;
    border: 1px solid;
    cursor: pointer;
    border-radius: 4px;
    background-color: #121212;
    color: #fff;
}

.history-button{
    font-size: smaller;
    padding: 7px 14px;
}


/* REPORT */
#report-content {
    border: none;
    width: 90vw;
    height: 80vh;
    margin: 30px;
}


/* POPUP */
#popup-container{
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 999;
    backdrop-filter: blur(4px);
}

#popup-container.active{
    display: flex;
}

#popup {
    padding: 48px;
    background-color: #fff;
    text-align: center;
    position: relative;
    border-radius: 4px;
}

#popup-title{
    font-weight: 600;
    margin-bottom: 16px;
}

#popup-info {
    text-align: center;
}

#popup-controls {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

#popup-confirm {
    display: none;
    padding: 12px 16px;
    cursor: pointer;
    background-color: #121212;
    color: #fff;
    border-radius: 4px;
    margin-top: 24px;
}

#popup-confirm.active {
    display: inline-block;
}

#popup-cancel {
    display: none;
    padding: 12px 16px;
    cursor: pointer;
    background-color: #121212;
    color: #fff;
    border-radius: 4px;
    margin-top: 24px;
}

#popup-cancel.active {
    display: inline-block;
}