.atvm-header-text{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}
.atvm-header-text h1{
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #16191a;
    margin: 0;
    padding: 0;
}
.atvm-header-text p{
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #16191a;
    margin: 0;
    padding: 0;
}
.atvm-header-text img{
    width: 70px;
}
.atvm-wrap-main {
    display: flex;
    gap: 20px;
    align-items: flex-start;

}


.atvm-wrap-main .nav-tab-wrapper a {
    margin-right: 10px;
    padding: 8px 10px;
    margin: 5px 0;
    cursor: pointer;
    transition: all .2s ease-in-out;
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #16191a;
    text-align: center;
    text-decoration: none;
    user-select: none;
    background-color: #fff;
    border: none;
}

.atvm-wrap-main .nav-tab-wrapper a:hover {
    background: #f9f9f9;
}

.atvm-wrap-main .nav-tab-wrapper {
    margin-bottom: 20px;
}

.atvm-wrap-main .nav-tab-wrapper {
    display: grid;
    width: 250px;
    border: 0 solid transparent;
    box-shadow: rgba(99, 99, 99, .2) 0 2px 8px 0;
    background: #fff;
    overflow: hidden;
    margin-top: 20px;
    position: sticky;
    top: 121px;
}

.atvm-wrap-content {
    width: 100%;
}

/* Main container */
.atvm-wrap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 0 20px;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
    border-bottom: 1px solid #e5e5e5;
    box-sizing: border-box;
    margin-left: -20px;
    position: sticky;
    top: 32px;
    z-index: 9;
}

/* Main container */
.atvm-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.atvm-left-box,
.atvm-right-box {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
}


.atvm-left-box {
    width: 70%;
}

.atvm-right-box {
    width: 30%;
}

/* Switch controls */
.atvm-switch-container-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.atvm-switch-container {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
}

.atvm-sa-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 10px;
}

.atvm-switch-auto-save {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    gap: 40px;
}

.atvm-switch {
    position: relative;
    display: inline-block;
    width: 49px;
    height: 23px;
    vertical-align: middle;
    margin-right: 10px;
}

.atvm-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.atvm-swal-container {
    position: relative;
    z-index: 999999;
}
.atvm-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.atvm-slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.atvm-slider {
    background-color: #2F5597;
}

input:checked+.atvm-slider:before {
    transform: translateX(26px);
}

.atvm-slider.round {
    border-radius: 34px;
}

.atvm-slider.round:before {
    border-radius: 50%;
}

.atvm-switch-label {
    vertical-align: middle;
    font-weight: 600;
}

/* Role grid */
.atvm-role-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.atvm-role-box {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 4px;
}

.atvm-role-box h4 {
    margin-top: 0;
    margin-bottom: 0px;
}

/* Form groups */
.atvm-form-group {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
    border: 1px solid #ddd;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.atvm-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.atvm-form-group .description {
    color: #666;
    margin-top: 15px;
    font-size: 15px;
}

/* Color picker */
.color-picker {
    width: 100px !important;
}

/* Customizer */
.atvm-sortable-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ddd;
    min-height: 100px;
}

.atvm-admin-bar-item {
    padding: 10px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    cursor: move;
    display: flex;
    align-items: center;
}

.atvm-admin-bar-item:hover {
    background: #f0f0f0;
}

.atvm-admin-bar-item .dashicons-menu {
    margin-right: 10px;
    color: #aaa;
}

.atvm-item-title {
    flex-grow: 1;
}

.atvm-item-actions {
    margin-left: auto;
}

.atvm-item-actions a {
    text-decoration: none;
    color: #555;
    margin-left: 5px;
}

.atvm-item-actions a:hover {
    color: #2F5597;
}

#atvm-item-editor {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.atvm-form-actions {
    margin-top: 20px;
}

/* Quick links */
.atvm-quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

/* Logo preview */
.atvm-logo-preview {
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border: 1px dashed #ddd;
    display: inline-block;
}

#atvm-import-settings {
    display: block;
}

.atvm-tools {
    display: flex;
    align-items: center;
    gap: 40px;
}

.atvm-tools-title {
    width: 200px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.atvm-tools-title::after {
    content: ':';
    display: inline-block;
}

.atvm-box {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 20px;
    margin-right: 20px;
}
.atvm-box-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
#wpadminbar #wp-admin-bar-custom-logo .ab-item {
    padding: 0 7px;
}

#wpadminbar #wp-admin-bar-custom-logo .ab-item img {
    height: 20px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

#atvm-export-settings {
    background-color: #b4d8e7;
    color: #1f4e6e;
    cursor: pointer;
    width: max-content;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid transparent;
    line-height: 1;
    text-decoration: none;
    transition: all .2s ease-in-out;
    font-size: .875rem;
}

#atvm-export-settings:hover {
    background-color: #00a5e6;
    color: #fff;
}

#atvm-import-settings {
    background-color: #b4d8e7;
    color: #1f4e6e;
    cursor: pointer;
    width: max-content;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid transparent;
    line-height: 1;
    text-decoration: none;
    transition: all .2s ease-in-out;
    font-size: .875rem;
}

#atvm-import-settings:hover {
    background-color: #00a5e6;
    color: #fff;
}

#atvm-reset-settings {
    background-color: #f8d7da;
    color: #d8000c;
    cursor: pointer;
    width: max-content;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid transparent;
    line-height: 1;
    text-decoration: none;
    transition: all .2s ease-in-out;
    font-size: .875rem;
}

#atvm-reset-settings:hover {
    background-color: #f5c6cb;
    color: #a71d2a;
}

/*css for onclick radio button*/
.atvm-button-position {
    display: flex;
}

.atvm-radio-button {
    margin-right: 10px;
}

.atvm-radio-button input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
}

.atvm-radio-button label {
    background-color: #eee;
    padding: 7px 15px;
    font-size: 16px;
    border: 1px solid #eee;
    border-radius: 4px;
    cursor: pointer;
}

.atvm-radio-button label:hover {
    background-color: #2F5597;
    color: #fff;
    border: 1px solid #2F5597;
}


.atvm-radio-button input[type="radio"]:focus+label {
    border: 1px solid #444;
}

.atvm-radio-button input[type="radio"]:checked+label {
    background-color: #2F5597;
    border-color: #2F5597;
    color: #fff;
    cursor: pointer;
}


/* //upload logo button css */
#atvm_custom_logo {
    background-color: #eee;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 7px 15px;
    color: #000;
}
#atvm_custom_logo_url {
    background-color: #eee;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 7px 15px;
    color: #000;
}

.atvm-upload-logo {
    background-color: #eee;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    padding: 9px 15px;
    border: 1px solid #2F5597;
    margin: 0 10px;
}

.atvm-upload-logo:hover {
    background-color: #2F5597;
    color: #fff;
}
.atvm-remove-logo {
    background-color: #a71d2a;
    font-size: 16px;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    padding: 9px 15px;
    border: 1px solid #a71d2a;
}

.atvm-remove-logo:hover {
    background-color: #f5c6cb;
    color: #a71d2a;
    
}

/* atvm disabled */
.atvm-disabled {
    opacity: 0.7;
    cursor: default;
    pointer-events: none;
    user-select: none;
    position: relative;
}

.atvm-disabled::before {
    content: "Coming soon";
    /* display: flex;
    align-items: center;
    justify-content: center; */
    position: absolute;
    top: 6px;
    left: 96px;
    width: max-content;
    background-color: #2F5597;
    padding: 2px 5px;
    border-radius: 3px;
    color: #fff;
    z-index: 9999;
}





















/* Responsive */
@media (max-width: 1200px) {
    .atvm-container {
        flex-direction: column;
    }

    .atvm-left-box,
    .atvm-right-box {
        width: 100%;
    }
}

@media (max-width: 782px) {
    .atvm-role-grid {
        grid-template-columns: 1fr;
    }
}