.container-change-category,
.container-restricted-area {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: none;
    flex-direction: column;
    text-align: center;
}

.modal-container-change-category,
.modal-container-restricted-area {
    margin: auto;
    position: relative;
    padding: 40px;
    background-color: #FFF;
    max-width: 800px;
    width: 100%;
    border-radius: 5px;
    -webkit-box-shadow: 3px 3px 4px 3px rgba(0,0,0,0.10); 
    box-shadow: 3px 3px 4px 3px rgba(0,0,0,0.10);
}

.modal-container-change-category h4,
.modal-container-restricted-area h4 {
    color: #333;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 20px;
}

.modal-container-change-category p,
.modal-container-restricted-area p {
    color: #666;
    font-weight: normal;
    font-size: 18px;
}

.modal-container-change-category p strong,
.modal-container-change-category p a,
.modal-container-restricted-area p strong,
.modal-container-restricted-area p a {
    font-weight: bold;
}

.modal-container-change-category p a,
.modal-container-restricted-area p a {
    color: #0072BC;
}

.modal-container-change-category .btn-action,
.modal-container-restricted-area .btn-action {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.modal-container-change-category .btn-action .btn-box,
.modal-container-restricted-area .btn-action .btn-box {
    display: flex;
    gap: 5px;    
    width: 400px;
}

.modal-container-change-category .btn-success,
.modal-container-restricted-area .btn-success {
    background-color: #0072BC;
}

.modal-container-change-category .btn-action .btn,
.modal-container-restricted-area .btn-action .btn {
    flex: 1;
    text-align: center;
}