div#acb_settings {
    margin-top: 35px;
}

.acb_mails_container.sidebar-settings {
    display: flex;
}

.acb_sidebar {
    // width: 200px;
    width: 20%;
    background-color: #008080;
    padding: 20px;
    color: #fff;
}

.acb_top {
    box-shadow: 2px 4px 10px 1px rgba(201, 201, 201, 0.47);
    padding: 10px;
    display: flex;
    position: relative;

    // position: sticky;
    // top: 30px;
    // z-index: 29;
    // background: white;


    img.wpnts_logo_footer {
        width: auto;
        height: 35px;
        display: flex;
        align-items: center;
        text-align: center;
        margin-right: 35px;
        margin-top: 13px;
        cursor: pointer;
    }
}

.tab {
    cursor: pointer;
    padding: 10px;
    margin-bottom: 10px;
    transition: background-color 0.3s;
    border-radius: 5px;
}

.tab:hover {
    background-color: #109b9b;
}

.tab.active {
    background-color: #ffffff;
    color: black;
}

.tab.tabarea {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

p.NEW_TAG {
    position: absolute;
    top: 7px;
    right: -59px;
    z-index: 2;
    background: var(--new-gradient);
    color: var(--text-white);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    box-shadow: var(--new-shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: var(--z-popover);
    animation: slideInBounce 0.5s ease;

    @media (max-width: 768px) {
        position: static;
        display: inline-block;
        margin-bottom: var(--spacing-sm);
    }
}


.getGlobalURLCheckbox {
    margin-top: 15px;
    margin-bottom: 15px;
}


.tab:not(.active) {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.acb_content_container {
    flex: 1;
    padding: 1px;
}

div#acb_bottom {
    display: flex;
}

/* Add responsive styles as needed */
@media (max-width: 768px) {
    .acb_mails_container {
        flex-direction: column;
    }

    .acb_sidebar {
        width: 100%;
    }
}

// Shake animation for highlighting elements
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.shake-animation {
    animation: shake 0.8s ease-in-out;
    background-color: rgba(255, 193, 7, 0.3) !important;
    border: 2px solid #ffc107 !important;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.5) !important;
}

// Enhanced shake for form elements
[data-setting].shake-animation,
.toggle-switch-container.shake-animation,
.woo-supportSwitch-4.shake-animation {
    animation: shake 0.8s ease-in-out;
    background-color: rgba(255, 193, 7, 0.1) !important;
    border: 2px solid #ffc107 !important;
    border-radius: 8px !important;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.5) !important;
    padding: 10px !important;
    margin: 5px 0 !important;

    // Ensure the animation is visible
    position: relative;
    z-index: 10;
}