.gui-wrap {
    position: absolute;
    top: 6.5rem;
    left: 0;
    width: 100%;
    max-width: 47.9rem;
    background-color: var(--gray-900);
    border-right: 1px solid var(--gray-700);
    height: calc(100% - 6.5rem);
    z-index: 100;
    display: none;
    flex-direction: column;
    gap: var(--spacing-16);
}

.gui-wrap.active {
    display: flex;
}

.gui-wrap .buttons {
    width: 100%;
    padding: var(--spacing-16) var(--spacing-16) 0;
    box-sizing: border-box;
  }
  
  .gui-wrap .buttons .button-group {
    display: flex;
    width: 100%;
    gap: var(--spacing-10);
  }

  .gui-wrap .buttons .button-group button {
    flex: 1 0 auto;
    color: var(--white);
    background-color: var(--gray-700);
    border: 1px solid var(--gray-500);
    border-radius: var(--radius-md-8);
    padding: var(--spacing-8) 0;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .gui-wrap .buttons .button-group button:hover {
    background-color: var(--gray-600);
  }
  .gui-wrap .buttons .button-group button:active {
    background-color: var(--gray-900);
  }

/* 기존 파일들 */
/* div {
    display: block;
    unicode-bidi: isolate;
}

#info {
    position: absolute;
    top: 10px;
    width: 100%;
    text-align: center;
    z-index: 100;
    display:block;
}

.gui-wrap {
    position: absolute;
    top: 15px;
    left: 10px;
    background-color: #767677;
    z-index: 100;
    border-radius: 10px;
    padding: 15px 20px 15px 15px;
    min-width: 340px;
}

.gui-wrap input {
    margin-bottom: 10px;
    margin-right: 10px;
}

.gui-wrap input[type="checkbox"] {
    margin-bottom: 15px;
    margin-right: 10px;
} */





/*.loading-bar {
    width: 0%;
    height: 20px;
    background-color: blue;
    transition: width 0.3s ease;
}

.complete-message {
    color: green;
}

.error-message {
    color: red;
}*/





.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#progressBar {
    color: white;
    font-size: 18px;
    margin-top: 20px;
    text-align: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    body header {
        height: 5.4rem;
    }
    body .header-inner {
        padding: 0 1.6rem;
    }
    body .header-inner h1 {
        font-size: 1.6rem;
    }
    body .gui-wrap {
        top: 5.5rem;
        height: calc(100% - 5.5rem);
    }
}