.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1001;
    display: block;
}

.modal-container {
    position: fixed;
    width: 50rem;
    height: auto;
    max-height: calc(100% - 1rem);
    padding: 10px 20px;
    background: #f6f6f6;
    border-radius: 4px;
    border: 1px solid #dddddd;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    z-index: 1002;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    .title-label {
        text-align: left;
    }

    .hidden {
        display: none;
    }
}

.modal-title {
    color: #1a2341;
    font-size: 28px;
    font-weight: 700;
    word-wrap: break-word;
}
