body.AAS-active {
    overflow: hidden !important;
    height: 100% !important;
    width: 100% !important;
    position: fixed !important;
}

#AAS-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    background-color: #4C6B4C;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    margin: 0;
    padding: 0;
}

.AAS-modal {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.AAS-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    transition: color 0.3s;
}

.AAS-close:hover {
    color: #333;
}

.AAS-content {
    text-align: center;
}

.AAS-qrcode {
    margin-bottom: 25px;
}

.AAS-qrcode img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.AAS-form p {
    margin: 0 0 20px;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.AAS-input-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 15px;
}

#AAS-code {
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    width: 180px;
    font-size: 15px;
    transition: border-color 0.3s;
}

#AAS-code:focus {
    border-color: #4C6B4C;
    outline: none;
}

#AAS-submit {
    padding: 10px 25px;
    background-color: #4C6B4C;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
    font-weight: 500;
}

#AAS-submit:hover {
    background-color: #6D976D;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.3);
}

#AAS-submit:active {
    transform: translateY(0);
    box-shadow: none;
}
