#tagsyncer-wrap {
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    background: linear-gradient(135deg, #ffffff, #f7f7f7);
    transition: all 0.3s ease;
}

.tagsyncer-nav-tab-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    padding: 0;
    font-size: 18px;
    margin-top: 50px !important;
    height: 550px;
    border-radius: 10px;
}

.tagsyncer-nav-tab {
    display: block;
    padding: 16px 24px;
    color: white;
    background: linear-gradient(135deg, #3a6ea5, #2a4680);
    text-decoration: none;
    width: 100%;
    text-align: center;
    font-size: 18px;
    margin-bottom: 5px;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.tagsyncer-nav-tab:hover,
.tagsyncer-nav-tab:focus {
    background: linear-gradient(135deg, #0056b3, #004494);
    transform: translateY(-3px);
    color: #fff;
}

.tagsyncer-nav-tab-active {
    background: linear-gradient(135deg, #0056b3, #004494);
    color: #fff;
    font-weight: bold;
    border-left: 6px solid #34c759;
}

.tagsyncer-tab-content {
    display: none;
    width: 65%;
    margin: 20px;
    position: absolute;
    left: 320px;
    top: 50px;
    overflow-y: auto;
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease, transform 0.3s ease;
    transform: scale(0.98);
}

.tagsyncer-tab-content:hover {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tagsyncer-tab-content.tagsyncer-nav-tab-active {
    display: block;
}


.tagsyncer-tab-content.tagsyncer-nav-tab-active {
    display: block;
}

@media (max-width: 950px) {
    .tagsyncer-tab-content {
        width: 100%; 
        left: 0;     
        top: auto;   
        position: relative;
    }
    .tagsyncer-nav-tab-wrapper {
        height: auto;
    }
}

#submit {
    background: linear-gradient(135deg, #34c759, #28a745);
    border: none;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
}

#submit:hover {
    background: linear-gradient(135deg, #0056b3, #004494);
    transform: translateY(-3px);
}

#tagsyncer-wrap {
    position: relative;
    z-index: 10; /* Ensure your plugin wrapper has a higher priority */
}

.notice, .e-notice {
    z-index: 1; /* Push global notices below your plugin layout */
    position: static;
}