/* Multiple Tabs Warning Dialog Styles */
.multiple-tabs-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.multiple-tabs-dialog {
    background: white;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.multiple-tabs-header {
    padding: 20px;
    background: #70be54;
    text-align: center;
    border-bottom: none;
}

.multiple-tabs-header img {
    height: 45px;
    width: auto;
}

.multiple-tabs-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: none;
}

.multiple-tabs-body {
    padding: 25px 20px;
}

.multiple-tabs-body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    text-align: center;
}

.multiple-tabs-footer {
    padding: 10px 20px 12px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    background: white;
}

.btn-multiple-tabs-ok {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    min-width: 80px;
}

.btn-multiple-tabs-ok:hover {
    background: #1976D2;
}

.btn-multiple-tabs-ok:active {
    background: #0D47A1;
}

