.btn-open {
    padding: 10px 20px;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.popup-overlay {
    
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.05);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-box {
    background: #fff;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 30px;
    position: relative;
    min-width: 350px;
    max-height: 90vh;
    box-sizing: border-box;
    overflow: auto;
}

.popup-box.popup-box-sm {
    width: 350px;
}

.popup-box.popup-box-md {
    width: 600px;
    max-width: 90%;
}

.popup-box.popup-box-lg {
    width: 1040px;
    max-width: 90%;
}

.popup-icon {
    color: #67E69C;
    text-align: center;
}

.popup-icon svg {
    height: 64px;
    width: 64px;
}

.popup-box .popup-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.popup-desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
}

.popup-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

.btn-outline {
    background-color: #f3f4f6;
    color: #111827;
}

.popup-box .card-lawyer {
    margin-top: 24px;
}

.btn-close-modal{
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    line-height: 0;
    padding: 12px;
    background: #8f8f8f22;
}