/**
 * Admin Panel Styles
 * Provides all custom CSS styling for the plugin's WordPress backend interface.
 * This includes styling for gallery management pages, settings forms, image uploaders,
 * shortcode generator modals, and overall admin UI layout.
 * 
 * @package Awesome Responsive Photo Gallery - v1.2.2 - 29 July, 2026
 * @author Realwebcare
 * @link https://www.realwebcare.com/
 */
.wrap .awrpg-clear {
    clear: both
}
#add_new_gallery {
    width: 100%;
    margin: 42px 0 0;
}
#add_new_gallery h2.gallery-header {
    font-size: 1.8rem;
    color: #4caf50;
    text-align: left;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase
}
#add_new_gallery h2.gallery-header a.add-new-h2 {
    font-style: normal;
    font-size: 14px;
    font-weight: 700
}
#add_new_gallery h2.gallery-header span#awrpg-loading-image {
    background: url(../images/ajax-loader.gif) no-repeat 0 0;
    margin: -3px 10px;
    width: 96px;
    height: 20px;
    display: none
}
/* Custom Modal for Add New Gallery */
.awrpg-custom-modal {
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.awrpg-custom-modal.show {
    opacity: 1;
    visibility: visible;
}

.awrpg-custom-modal-content {
    background-color: #ffffff;
    margin: auto;
    padding: 40px;
    border: none;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
    font-family: Arial, sans-serif;
}

.awrpg-custom-modal.show .awrpg-custom-modal-content {
    transform: translateY(0);
}

.awrpg-custom-modal-close {
    color: #999;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.awrpg-custom-modal-close:hover,
.awrpg-custom-modal-close:focus {
    color: #333;
    text-decoration: none;
}

#add_new_gallery #awrpg_new {
    display: block;
    width: 100%;
}
#add_new_gallery #awrpg_new h3,
#add_new_gallery .gallerynamewrap h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-weight: 600;
}
#add_new_gallery #awrpg_new #awesome_gallery {
    display: block;
    width: 100%;
    padding: 14px 15px;
    margin: 10px 0 20px;
    border: 1px solid #cbd5e1;
    background-color: #f8fafc;
    border-radius: 6px;
    font-size: 1rem;
    color: #0f172a;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-sizing: border-box;
}
#add_new_gallery #awrpg_new #awesome_gallery:focus {
    border-color: #4caf50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
    background-color: #ffffff;
    outline: none;
}
#add_new_gallery #awrpg_new input::placeholder {
    color: #aaa;
    font-style: italic;
}
#add_new_gallery #awrpg_new input[type="submit"],
#add_new_gallery #awrpg_new .button-primary {
    width: 100%;
    padding: 14px 15px;
    font-size: 1rem;
    color: #ffffff;
    background: #4caf50;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s, transform .2s;
    margin-top: 10px;
}
#add_new_gallery #awrpg_new input[type="submit"]:hover,
#add_new_gallery #awrpg_new .button-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
}
#add_new_gallery #awrpg_new input[type="submit"]:active,
#add_new_gallery #awrpg_new .button-primary:active {
    background: #388e3c;
    transform: translateY(0);
}
#add_new_gallery #gallerynamediv {
    background-color: transparent;
    max-width: none;
    border: none;
    border-radius: 0;
    margin-top: 0;
    padding: 0;
    box-shadow: none;
}
#add_new_gallery .gallerynamewrap {
    border-bottom: none;
    margin: 0;
}
#add_new_gallery .gallery_list {
    margin: 3rem auto 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 30%;
    grid-template-rows: auto 1fr;
    gap: 0 24px;
    align-items: start;
}
#add_new_gallery .gallery_list>form {
    grid-column: 1;
    grid-row: 1;
}
#add_new_gallery .gallery_list>#awrpg-narration {
    grid-column: 1;
    grid-row: 2;
}
#add_new_gallery .gallery_list>#awrpg-sidebar {
    grid-column: 2;
    grid-row: 1 / -1;
    float: none;
    width: 100%;
}
#add_new_gallery .gallery_list>div[style*="clear"] {
    display: none;
}
#add_new_gallery .gallery_list p.get_started {
    font-size: 16px;
    line-height: 28px;
    border-left: 5px solid #7ad03a;
    max-width: 600px;
    margin: 20px auto;
    padding: 40px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif
}
#add_new_gallery .gallery_list table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    text-align: left;
    color: #212529;
}
#add_new_gallery .gallery_list table thead tr {
    background: #4CAF50;
    border-bottom: 4px solid #439b47;
}
#add_new_gallery .gallery_list table thead th {
    width: auto;
    font-size: 18px;
    border: none;
    padding: 20px 30px;
    font-weight: 600;
    color: #fff;
}
#add_new_gallery .gallery_list table thead th:last-child {
    text-align: center;
}
#add_new_gallery .gallery_list table thead th .awrpg_notice {
    color: #bfffc1;
    margin-left: 10px;
    text-shadow: 1px 1px 2px #122713
}
#add_new_gallery .gallery_list table thead th .awrpg_notice a {
    color: #184d91;
    text-shadow: 1px 1px 2px #a9f9ac;
    text-decoration: none;
    text-transform: uppercase
}
#add_new_gallery .gallery_list table thead th .awrpg_notice a:hover {
    color: #bfffc1;
    text-shadow: 1px 1px 2px #122713
}
#add_new_gallery .gallery_list table tbody tr {
    background-color: #FFFFFF;
    margin-bottom: 10px;
    border-bottom: 4px solid #eceffa;
}
#add_new_gallery .gallery_list table tbody:last-child tr {
    border-bottom-width: 1px;
}
#add_new_gallery .gallery_list table tbody td {
    position: relative;
    background: #FAFAFA;
    color: #007193;
    font-size: 16px;
    font-weight: normal;
    height: 36px;
    padding: 20px 30px;
    vertical-align: middle;
    border: none;
}
#add_new_gallery .gallery_list table tbody td:first-child {
    width: 8%;
    border-left: none;
}
#add_new_gallery .gallery_list table tbody .alt td {
    background: #e2eaff
}
#add_new_gallery .gallery_list table tbody tr:last-child td {
    border-bottom: none;
}
#add_new_gallery .gallery_list table tbody tr:hover td {
    background-color: #ffffff;
    cursor: pointer
}
#add_new_gallery .gallery_list table tbody td .awrpg_notice {
    font-size: 12px
}
#add_new_gallery .gallery_list table tbody td.gallery_name {
    width: 45%
}
#add_new_gallery .gallery_list table tbody td.gallery_name div {
    padding-bottom: 5px;
    cursor: pointer
}
/* Action Menu Styles */
.awrpg_action_column {
    position: relative;
    text-align: center;
}
.awrpg-action-menu-wrapper {
    position: relative;
    display: inline-block;
}
.awrpg-action-menu-trigger {
    cursor: pointer;
    color: #646970;
    font-size: 20px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}
.awrpg-action-menu-trigger:hover {
    background-color: #f0f0f1;
    color: #135e96;
}
.awrpg-action-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #c3c4c7;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    z-index: 100;
    min-width: 160px;
    display: none;
    text-align: left;
}
.awrpg-action-menu.show {
    display: block;
}
.awrpg-action-menu>span {
    display: block;
    padding: 10px 14px;
    color: #50575e;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
    line-height: 20px;
    border-bottom: 1px solid #f0f0f1;
}
.awrpg-action-menu>span:last-child {
    border-bottom: none;
}
.awrpg-action-menu>span:hover {
    background-color: #f6f7f7;
    color: #4CAF50;
}
.awrpg-action-menu>span.awrpg_remove {
    color: #d63638;
}
.awrpg-action-menu>span.awrpg_remove:hover {
    color: #d63638;
    background-color: #fcf0f1;
}
.awrpg-action-menu i.dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 20px;
    margin-right: 8px;
    vertical-align: text-top;
}
#add_new_gallery .gallery_list table tbody td input.awrpg_galid {
    margin: 0;
    padding: 0;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    width: 60px;
    text-align: center;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}
#add_new_gallery .gallery_list table tbody td input.awrpg_galid:hover,
#add_new_gallery .gallery_list table tbody td input.awrpg_galid:focus {
    outline: none;
    box-shadow: inset 2px 2px 4px 0px rgba(0, 0, 0, 0.15);
}
#add_new_gallery .gallery_list table tbody td .awrpg_duplicate_btn {
    display: flex;
    align-items: center;
}
#add_new_gallery .gallery_list table tbody td .awrpg_duplicate_btn.disabled {
    color: #a7aaad;
    cursor: default;
}
#add_new_gallery .gallery_list table tbody td .awrpg_duplicate_btn.disabled:hover {
    background-color: transparent;
    color: #a7aaad;
}

#add_new_gallery .gallery_list table tbody td.awrpg_notice {
    width: 40%
}
#add_new_gallery .gallery_list table tbody td.awrpg_notice span {
    font-size: 13px;
    color: #778899
}
#add_new_gallery .gallery_list table tbody td.awrpg_notice span strong {
    font-weight: 700
}
/* ==========================================================================
   Settings Panel — Premium SaaS Dashboard
   ========================================================================== */
#add_new_gallery #settinggallerydiv {
    margin: 0 0 10px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
#add_new_gallery #settinggallerydiv .gallery-input {
    margin-bottom: 20px;
}

/* --- Grid Layout for .accordion-input --- */
#add_new_gallery #settinggallerydiv .accordion-input {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 16px 24px;
    align-items: center;
    padding: 24px 20px;
}

/* --- ALL wrapper divs that contain label+input pairs must also be sub-grids ---
   They span full width of parent grid, then create their own identical grid. */
#add_new_gallery #settinggallerydiv .accordion-input #imageWidthHeight,
#add_new_gallery #settinggallerydiv .accordion-input #thumbnailIifo,
#add_new_gallery #settinggallerydiv .accordion-input #thumbnailTitle,
#add_new_gallery #settinggallerydiv .accordion-input #thumbnailCaption,
#add_new_gallery #settinggallerydiv .accordion-input #thumbBorderWidth,
#add_new_gallery #settinggallerydiv .accordion-input #thumbnailShadow,
#add_new_gallery #settinggallerydiv .accordion-input #enableThumbnail,
#add_new_gallery #settinggallerydiv .accordion-input #lcIframeElement,
#add_new_gallery #settinggallerydiv .accordion-input #lcVideoOption,
#add_new_gallery #settinggallerydiv .accordion-input #jgalleryThumbnails {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 16px 24px;
    align-items: center;
}

/* --- Full-width spanning elements (headings, tables, paragraphs, etc.) --- */
#add_new_gallery #settinggallerydiv .accordion-input>h4,
#add_new_gallery #settinggallerydiv .accordion-input>hr,
#add_new_gallery #settinggallerydiv .accordion-input>p,
#add_new_gallery #settinggallerydiv .accordion-input>table,
#add_new_gallery #settinggallerydiv .accordion-input>.include_metas,
#add_new_gallery #settinggallerydiv .accordion-input #shareSocialMedia {
    grid-column: 1 / -1;
}
/* h4 inside any wrapper div also needs full-span */
#add_new_gallery #settinggallerydiv .accordion-input [id]>h4 {
    grid-column: 1 / -1;
}

/* --- shareSocialMedia is NOT a grid — it has checkboxes, not label+input pairs --- */
#add_new_gallery #settinggallerydiv .accordion-input #shareSocialMedia {
    display: block;
}

/* --- Section Headings (h4) --- */
#add_new_gallery #settinggallerydiv .gallery-input h4 {
    margin: 15px 0 5px;
    padding: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    border-bottom: 1px solid #e2e8f0;
}
#add_new_gallery #settinggallerydiv .gallery-input h4:first-child {
    margin-top: 0;
}

/* --- Labels --- */
#add_new_gallery #settinggallerydiv .gallery-input label.label-title,
#add_new_gallery #settinggallerydiv .gallery-input label.label-check,
#add_new_gallery #settinggallerydiv .gallery-input label.label-title-check {
    color: #334155;
    margin: 0;
    padding: 0;
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

/* --- Inputs & Selects — Modern styling --- */
#add_new_gallery #settinggallerydiv .gallery-input input.medium,
#add_new_gallery #settinggallerydiv .gallery-input input[type=text],
#add_new_gallery #settinggallerydiv .gallery-input input[type=number],
#add_new_gallery #settinggallerydiv .gallery-input select.gallery-dir {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    height: 40px;
    padding: 10px 14px;
    margin: 0;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background-color: #f8fafc;
    color: #0f172a;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

/* --- Select dropdown — custom arrow fix --- */
#add_new_gallery #settinggallerydiv .gallery-input select.gallery-dir {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 8.825a.7.7 0 0 1-.5-.206L1.83 4.95a.7.7 0 0 1 .99-.99L6 7.14l3.18-3.18a.7.7 0 0 1 .99.99L6.5 8.62a.7.7 0 0 1-.5.206z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
}

/* --- Focus state for inputs & selects --- */
#add_new_gallery #settinggallerydiv .gallery-input input.medium:focus,
#add_new_gallery #settinggallerydiv .gallery-input input[type=text]:focus,
#add_new_gallery #settinggallerydiv .gallery-input input[type=number]:focus,
#add_new_gallery #settinggallerydiv .gallery-input select.gallery-dir:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    background-color: #ffffff;
}

/* --- Tickbox / Checkbox --- */
#add_new_gallery #settinggallerydiv .gallery-input input.tickbox {
    margin: 0;
    border: 1px solid #94a3b8;
    border-radius: 4px;
}
#add_new_gallery #settinggallerydiv .gallery-input input.tickbox:checked:before {
    margin: -3px 0 0 -5px;
}

/* --- label-title-check (used with checkboxes) --- */
#add_new_gallery #settinggallerydiv .gallery-input label.label-title-check {
    float: left;
}

/* --- Meta includes block --- */
#add_new_gallery #settinggallerydiv .gallery-input .include_metas {
    padding: 12px 0;
    display: block;
    width: 100%;
}
#add_new_gallery #settinggallerydiv .gallery-input label.metainclude {
    display: block;
}
#add_new_gallery #settinggallerydiv .gallery-input input.metabox {
    margin: 2px 5px;
    border: 1px solid #94a3b8;
    border-radius: 4px;
}

/* --- Color Section Table (inside the Color accordion) ---
   The Color tab uses a <table> with <th> for labels and <td> for color pickers.
   This table sits inside .accordion-input and spans full width via grid-column: 1/-1. */
#add_new_gallery #settinggallerydiv .gallery-input table {
    width: 100%;
    border-collapse: collapse;
}
#add_new_gallery #settinggallerydiv .gallery-input table tr.galtab-header,
#add_new_gallery #settinggallerydiv .gallery-input table tr.galtab-input {
    background-color: #fff;
}
#add_new_gallery #settinggallerydiv .gallery-input table tr.galtab-header {
    display: block;
    margin: 16px 0 10px;
    border: none;
}
#add_new_gallery #settinggallerydiv .gallery-input table tr.galtab-input {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 12px 24px;
    align-items: center;
    padding: 8px 0;
}
#add_new_gallery #settinggallerydiv .gallery-input table tr.galtab-input th {
    padding: 0;
    text-align: left;
    font-weight: 500;
}
#add_new_gallery #settinggallerydiv .gallery-input table tr.galtab-input th label.label-title {
    font-size: 13px;
    width: auto;
}
#add_new_gallery #settinggallerydiv .gallery-input table tr.galtab-header td {
    display: block;
    width: 100%;
    max-width: 456px;
    background: #f6f7f7 !important;
    color: #1e293b;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 34px 0 0;
    padding: 10px;
    border-left: 6px solid #cccccc;
}
#add_new_gallery #settinggallerydiv .gallery-input table tr.galtab-header.hfast td {
    margin-top: 0;
}
#add_new_gallery #settinggallerydiv .gallery-input table tr td {
    height: auto;
    padding: 0;
    border: none;
}
#add_new_gallery #settinggallerydiv .gallery-input table tr td:hover {
    background: transparent;
}
#add_new_gallery #settinggallerydiv .gallery-input table tr td input.medium {
    width: 104px;
    margin: 1px 0 0;
    padding-left: 5px;
}
#add_new_gallery #settinggallerydiv .gallery-input #thumbBorderWidth {
    display: grid;
}

/* --- Checkbox --- */
#settinggallerydiv .gallery-input .gallery-onoff-check {
    background: #eee;
    border: 1px solid #ddd;
    border-radius: 3px;
    display: inline-block;
    margin: 5px 0 10px;
    padding: 5px
}
#settinggallerydiv .gallery-input .player_param {
    display: inline-grid;
    border-radius: 10px;
    padding: 0 10px;
    margin: 5px;
    position: relative;
    height: 30px;
    line-height: 30px;
    width: auto;
    font-size: 14px;
    cursor: pointer;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
#settinggallerydiv .gallery-input .player_param:hover {
    border-color: #94a3b8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#settinggallerydiv .gallery-input .player_param span {
    padding-right: 48px;
    font-weight: 500;
    color: #334155;
}
#settinggallerydiv .gallery-input .player_param input[type=checkbox] {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 20px;
    background: #cbd5e1;
    border-radius: 20px;
    border-color: #ddd;
    cursor: pointer;
    outline: none;
    transition: background 0.3s ease;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.3);
}
#settinggallerydiv .gallery-input .player_param input[type=checkbox]:checked {
    background: #10b981;
}
#settinggallerydiv .gallery-input .player_param input[type=checkbox]::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
#settinggallerydiv .gallery-input .player_param input[type=checkbox]:checked::before {
    transform: translateX(19px);
    top: 4px;
}
#settinggallerydiv .gallery-input .player_param input[type=checkbox]::after {
    /* Remove the old On/Off text text completely as modern toggles don't need it */
    content: none;
}

/* --- Color Picker — Flexbox alignment --- */
#add_new_gallery .wp-picker-container {
    margin-left: -80px;
}
#add_new_gallery .wp-picker-container .wp-picker-input-wrap {
    display: inline;
    margin: 5px 0 0 5px;
}
#add_new_gallery #settinggallerydiv .wp-color-result {
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    margin: 0;
    padding: 0 3px 0 28px;
    font-size: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#add_new_gallery #settinggallerydiv .wp-color-result:hover {
    border-color: #94a3b8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
#add_new_gallery #settinggallerydiv .wp-color-result-text {
    line-height: 2;
}
#add_new_gallery #settinggallerydiv .wp-picker-container input[type=text].wp-color-picker {
    width: 74px !important;
    max-width: 90px !important;
    box-sizing: border-box;
    padding: 6px 10px;
    margin: 0 !important;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 13px;
    height: 32px;
    text-transform: uppercase;
    box-shadow: 0 0 4px 0px rgba(0, 0, 0, .10);
}
#add_new_gallery #settinggallerydiv .wp-picker-container .button.button-small {
    margin: 0 5px !important;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #334155;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    height: 32px;
    line-height: 22px;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}
#add_new_gallery #settinggallerydiv .wp-picker-container .button.button-small:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}
#add_new_gallery #settinggallerydiv .wp-picker-container .wp-picker-holder {
    display: block;
    margin: 0;
}
#add_new_gallery .wp-picker-container.wp-picker-active .wp-picker-holder .iris-picker {
    max-width: 242px !important;
}
#add_new_gallery #settinggallerydiv .wp-picker-container.wp-picker-active .iris-picker-inner .iris-square {
    margin-right: 10px !important;
    max-height: 147px !important;
}
#add_new_gallery #settinggallerydiv .wp-picker-container.wp-picker-active .iris-palette-container .iris-palette {
    width: 17px !important;
    height: 17px !important;
    margin-bottom: 4px !important;
}
#add_new_gallery #settinggallerydiv .wp-picker-container.wp-picker-active .iris-palette-container .iris-palette:nth-child(9)+a.iris-palette {
    clear: left;
    margin-left: 0 !important;
}
/* Gallery Tooltip */
#add_new_gallery #settinggallerydiv .arp_gal_tooltip,
#add_new_gallery #settinggallerydiv .awrpg_global .awrpg_tooltip {
    font-size: 18px;
    margin: 0 0 0 5px;
    position: relative;
    top: -2px;
    display: inline-block;
    color: #333333;
    text-decoration: none;
    box-shadow: none;
}
#add_new_gallery #settinggallerydiv .arp_gal_tooltip:hover:after,
#add_new_gallery #settinggallerydiv .awrpg_global .awrpg_tooltip #awrpg-custom-tooltip {
    background: #e5f9e0;
    border: 1px solid #80c780;
    color: #378037;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    top: 30px;
    left: -90px;
    content: attr(rel);
    padding: 20px;
    position: absolute;
    z-index: 98;
    width: 320px;
    font-size: 14px;
    text-align: left;
    line-height: 24px
}
#add_new_gallery #settinggallerydiv .arp_gal_tooltip:hover:after {
    background: #3c434a;
    border: 1px solid #2e3338;
    color: #fff;
}
#add_new_gallery #settinggallerydiv .arp_gal_tooltip:hover:after {
    top: -12px;
    left: 32px;
    max-width: 260px;
    padding: 15px 20px 20px;
}
#add_new_gallery #settinggallerydiv .arp_gal_tooltip:hover .awrpg_ttarrow::before,
#add_new_gallery #settinggallerydiv .awrpg_global .awrpg_tooltip:hover .awrpg_ttarrow::before,
#add_new_gallery #settinggallerydiv .awrpg_global .awrpg_tooltip.awrpg_note:hover::before {
    content: "";
    border: solid;
    border-color: transparent transparent #80c780;
    border-width: 10px;
    top: 10px;
    left: -1px;
    position: absolute;
    z-index: 99
}
#add_new_gallery #settinggallerydiv .arp_gal_tooltip::before,
#add_new_gallery #settinggallerydiv .awrpg_global .awrpg_tooltip::before {
    position: relative;
    top: 7px;
    text-shadow: none;
}
#add_new_gallery #settinggallerydiv .arp_gal_tooltip::before {
    top: 3px;
}
#add_new_gallery #settinggallerydiv .awrpg_global .awrpg_tooltip:hover:after {
    content: attr(rel);
    position: absolute;
    top: -20px;
    left: 35px;
    background: #3c434a;
    width: 320px;
    color: #fff;
    padding: 15px 30px 20px;
    font-size: 16px;
    text-align: left;
    line-height: 24px;
    border: 1px solid #1d2327;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    z-index: 98;
}
#add_new_gallery #settinggallerydiv .arp_gal_tooltip .awrpg_tooltip:hover:after,
#add_new_gallery #settinggallerydiv .awrpg_global .awrpg_tooltip:hover:after {
    width: 300px
}
#add_new_gallery #settinggallerydiv a.arp_gal_tooltip:hover .awrpg_ttarrow::before {
    top: 3px;
    left: 13px;
    border-color: transparent #3c434a transparent transparent
}
#add_new_gallery #settinggallerydiv .awrpg_global .awrpg_tooltip:hover .awrpg_ttarrow::before {
    border-color: transparent #3c434a transparent transparent;
    top: unset;
    bottom: -3px;
    left: 16px
}
/* //Gallery Tooltip */

/* Plugin Card */
.plugin-card.awrpg-plugin-card .plugin-card-top {
    min-height: 210px
}

/* Global Settings */
#settinggallerydiv.awrpg_ui_settings .ui-tabs .ui-tabs-panel {
    display: flex;
    flex-direction: column;
    padding: 2em 5px;
}
#add_new_gallery h2 {
    margin: 0 0 1em;
    font-size: 24px;
    font-weight: 600
}
#add_new_gallery #settinggallerydiv .awrpg_global.gallery-input {
    margin: 10px 0 20px;
    padding: 1.5em;
    width: auto;
    float: left
}
#add_new_gallery #settinggallerydiv .awrpg_global #awrpg_setting_form {
    display: flex;
    flex-wrap: wrap;
    border: none;
    margin: 0;
    padding: 0;
    position: relative
}
#add_new_gallery #settinggallerydiv .awrpg_global .awrpg_options {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background: rgb(39 174 96 / 11%);
    margin: 0;
    position: relative
}
#add_new_gallery #settinggallerydiv .awrpg_global .awrpg_options.alt-opt {
    background: rgb(39 174 96 / 25%)
}
#add_new_gallery #settinggallerydiv .awrpg_global .awrpg_up_arrow::before {
    content: "";
    border: solid;
    border-color: transparent transparent #3b893e;
    border-width: 10px;
    bottom: -18px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%)
}
#add_new_gallery #settinggallerydiv .awrpg_global label.awrpg_global_check {
    display: inline-flex;
    border-radius: 20px;
    padding: 1px 3px;
    margin: 15px 30px;
    position: relative;
    font-size: 13px;
    cursor: pointer;
    line-height: 24px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 62px;
    height: 34px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease
}
#add_new_gallery #settinggallerydiv .awrpg_global label.awrpg_global_check:hover {
    background-color: #f1f1f1;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.2), 1px 1px 3px 0 rgba(0, 0, 0, 0.2)
}
#add_new_gallery #settinggallerydiv .awrpg_global label.input-check,
#add_new_gallery #settinggallerydiv .awrpg_global label.input-title {
    display: inline-flex;
    position: relative;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    max-width: 330px;
    width: 100%;
    background: #4caf50;
    color: #ffffff;
    text-shadow: 1px 1px 0 rgb(0 0 0 / 40%);
}
#add_new_gallery #settinggallerydiv .awrpg_global label.input-title {
    border-bottom: 1px solid #3b893e;
}
#add_new_gallery #settinggallerydiv .awrpg_global #own_choice_font .awrpg_options.alt-opt label.input-title {
    background: #439b46
}
#add_new_gallery #settinggallerydiv .awrpg_global #own_choice_font label.input-check,
#add_new_gallery #settinggallerydiv .awrpg_global #choice_fa_cdn label.input-check {
    max-width: 320px
}
#add_new_gallery #settinggallerydiv .awrpg_global #own_choice_font label.input-title {
    max-width: 260px
}
#add_new_gallery #settinggallerydiv .awrpg_global label.input-check:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: #3b893e;
    width: 100%;
    height: 1px
}
#add_new_gallery #settinggallerydiv .awrpg_global input.medium {
    width: 47%;
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    border-radius: 5px;
    border: none;
    margin: 10px auto;
}
#add_new_gallery #settinggallerydiv .awrpg_global #own_choice_font label.input-title a.global-link {
    color: #F4B400;
    text-decoration: none;
    line-height: 13px;
    padding: 0 4px;
    font-size: 13px;
    font-weight: 600
}
#add_new_gallery #settinggallerydiv .awrpg_global #own_choice_font label.input-title a.global-link:hover {
    text-decoration: underline
}
#add_new_gallery #settinggallerydiv .awrpg_global #own_choice_font label.input-title a.global-link::after {
    content: '\f504';
    font-family: dashicons;
    font-size: 16px;
    position: relative;
    top: 2px
}
#add_new_gallery #settinggallerydiv .awrpg_global #own_choice_font .awrpg_options input.medium {
    width: 55%;
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    border-radius: 5px;
    margin: 10px auto;
}
#add_new_gallery #settinggallerydiv .awrpg_global label.awrpg_global_check input[type=checkbox] {
    margin: 10px 24px !important
}
#add_new_gallery #settinggallerydiv .awrpg_global label.awrpg_global_check input[type=checkbox]:after {
    content: "Off";
    margin: -14px 0 0;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 6px;
    margin-top: -14px;
    display: inline-block;
    padding: 14px 5px;
    width: 4em;
    border-radius: 20px;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    font-size: 11px;
    text-align: right;
    padding-right: 6px;
    background: #CCCCCC;
    color: #EEEEEE;
    transition: background-color 0.3s ease, color 0.3s ease
}
#add_new_gallery #settinggallerydiv .awrpg_global label.awrpg_global_check input[type=checkbox]:checked:after {
    content: "On";
    background: #007BFF;
    color: #fff;
    text-align: left;
    padding-left: 6px;
    padding-right: 5px
}
#add_new_gallery #settinggallerydiv .awrpg_global label.awrpg_global_check input[type=checkbox]:before {
    content: "";
    position: absolute;
    z-index: 2;
    width: 24px;
    height: 24px;
    top: 50%;
    margin-top: -12px !important;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, background-color 0.3s ease, right 0.3s ease;
    right: 35px
}
#add_new_gallery #settinggallerydiv .awrpg_global label.awrpg_global_check input[type=checkbox]:checked:before {
    transform: translateX(27px);
    background: #007BFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.5)
}
/* Tooltip in Global Settings */
#add_new_gallery #settinggallerydiv .awrpg_global a.awrpg_tooltip.dashicons,
#add_new_gallery #settinggallerydiv .awrpg_global a.awrpg_tooltip.awrpg_note {
    width: 18px;
    height: 18px
}
#add_new_gallery #settinggallerydiv .awrpg_global a.awrpg_tooltip.awrpg_note {
    height: 14px
}
#add_new_gallery #settinggallerydiv .awrpg_global a.awrpg_tooltip:hover:after,
#add_new_gallery #settinggallerydiv .awrpg_global a.awrpg_tooltip #awrpg-custom-tooltip {
    top: -25px;
    left: 30px;
    right: unset;
    width: 360px;
    font-style: normal;
    line-height: 20px
}
#add_new_gallery #settinggallerydiv .awrpg_global a.awrpg_tooltip.awrpg_note:hover:after,
#add_new_gallery #settinggallerydiv .awrpg_global a.awrpg_tooltip #awrpg-custom-tooltip {
    top: -36px
}
#add_new_gallery #settinggallerydiv .awrpg_global a.awrpg_tooltip:hover .awrpg_ttarrow::before {
    top: 5px;
    left: 11px;
    border-color: transparent #3c434a transparent transparent
}
#add_new_gallery #settinggallerydiv .awrpg_global a.awrpg_tooltip.awrpg_note:hover::before {
    top: -1px;
    left: 11px;
    border-color: transparent #e5f9e0 transparent transparent
}
#add_new_gallery #settinggallerydiv .awrpg_global a.awrpg_tooltip.awrpg_note:hover::before {
    position: absolute !important;
    top: 0
}
#add_new_gallery #settinggallerydiv .awrpg_global .dashicons {
    margin-left: 5px;
    margin-top: 0
}
#add_new_gallery #settinggallerydiv .awrpg_global #own_choice_font .dashicons {
    margin-top: 2px
}
#add_new_gallery #settinggallerydiv .awrpg_global a.awrpg_tooltip.awrpg_note {
    background: none;
    left: -20px;
    top: -3px;
    box-shadow: none;
}
#add_new_gallery #settinggallerydiv .awrpg_global a.awrpg_tooltip.awrpg_note:hover:after,
#add_new_gallery #settinggallerydiv .awrpg_global a.awrpg_tooltip #awrpg-custom-tooltip {
    min-width: 300px;
    max-width: 524px;
    width: 500px;
    font-size: 14px;
    line-height: 24px;
    padding: 45px 30px 20px;
    color: #323232
}
#add_new_gallery #settinggallerydiv .awrpg_global a.awrpg_tooltip.awrpg_note:hover:after {
    border-bottom: none;
    padding-bottom: 10px;
}
#add_new_gallery #settinggallerydiv .awrpg_global a.awrpg_tooltip.awrpg_note:hover i.attention::after {
    content: attr(title);
    position: absolute;
    top: -18px;
    left: 61px;
    font-size: 16px;
    line-height: 24px;
    color: #323232;
    font-style: normal;
    min-width: 300px;
    z-index: 99
}
#add_new_gallery #settinggallerydiv .awrpg_global a.awrpg_tooltip.awrpg_note::before {
    top: -4px
}
#add_new_gallery #settinggallerydiv .awrpg_global a.awrpg_tooltip.awrpg_note:hover:after {
    background: transparent;
    border: 0;
}
#add_new_gallery #settinggallerydiv .awrpg_global #awrpg_process.button-primary {
    position: relative;
    top: 25px;
    left: 0;
    margin: 0 0 30px;
}
/* CodeMirror */
#add_new_gallery #settinggallerydiv .awrpg_global .awrpg_custom_css .CodeMirror {
    border: 1px solid #ddd
}
#add_new_gallery #settinggallerydiv .awrpg_global .awrpg_custom_css .CodeMirror-scroll {
    margin-right: 0
}
#add_new_gallery #settinggallerydiv .awrpg_global .awrpg_custom_css .CodeMirror-sizer {
    border: 0;
    margin-left: 46px !important
}
#add_new_gallery #settinggallerydiv .awrpg_global .awrpg_custom_css .CodeMirror-gutters {
    left: 0 !important
}
#add_new_gallery #settinggallerydiv .awrpg_global .awrpg_custom_css .CodeMirror-lint-markers {
    width: auto
}
#add_new_gallery #settinggallerydiv .awrpg_global .awrpg_custom_css .CodeMirror-gutter.CodeMirror-linenumbers {
    width: 45px !important
}
/* //Global Settings */



/* Review */
#awrpg-review {
    border-color: #ddd;
    border-left: 5px solid #4a90e2;
    border-radius: 12px;
    margin: 2em auto;
    padding: 20px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 92%;
    animation: fadeIn .6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

#awrpg-review p {
    font-size: 14px
}

#awrpg-review b {
    color: #0073aa
}

.awrpg-review-btn {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 15px
}

.awrpg-review-btn .button-primary, .awrpg-review-btn .button-secondary {
    transition: background-color .3s ease, transform .2s ease
}

.awrpg-review-btn .button-primary:hover, .awrpg-review-btn .button-secondary:hover {
    transform: scale(1.05)
}
/* //Review */

#add_new_gallery #awrpg_edit_form #form-messages {
    position: relative;
    top: 0;
    color: #22313f;
    font-size: 18px;
    text-shadow: 1px 1px 2px rgb(34 49 63 / 30%);
    cursor: pointer;
    border-radius: 12px;
    background: #fff;
    margin: 0 0 30px;
    padding: 15px 25px;
    box-shadow: 0 0 3px 1px rgb(34 49 63 / 40%);
    overflow: hidden;
    display: none;
    transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.35)
}
#add_new_gallery .success:before {
    content: "";
    position: absolute;
    width: 0;
    color: #49D761;
    border-left: 2px solid;
    border-right: 3px solid;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    height: 36px
}
#add_new_gallery .success>.start-icon {
    margin: -5px 20px 0 0;
    min-width: 20px;
    text-align: center;
    color: #49D761;
    font-size: 30px
}
#add_new_gallery .success .blackcross {
    font-size: 24px;
    color: #22313f;
    width: 24px;
    height: 24px
}
#add_new_gallery .success .awrpg_close {
    position: absolute;
    top: 50%;
    right: 15px;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    height: 24px;
    line-height: 24px;
    padding: 0;
    background-color: transparent;
    border: 0;
    transform: translateY(-50%)
}
#add_new_gallery .success .awrpg_close:hover {
    opacity: 1
}
#add_new_gallery .success .awrpg_close:not(:disabled):not(.disabled) {
    cursor: pointer
}
.awrpg-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .3s ease-in-out
}
.awrpg-modal-content {
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    color: #333333;
    font-weight: 600;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn .5s ease-in-out;
    max-width: 400px;
    width: 90%
}
.awrpg-modal-content h2 {
    font-size: 1.5rem;
    color: #0073aa;
    margin-bottom: 10px;
    font-weight: bold
}
.awrpg-modal-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5
}
.awrpg-modal-content img {
    width: 50px;
    height: auto;
    margin-top: 15px
}
.awrpg-modal.shrink-out {
    transform: scale(1);
    opacity: 1;
    transition: all .3s ease-in-out
}
.awrpg-modal.shrink-out.hide {
    transform: scale(0.5);
    opacity: 0
}
.awrpg-btn-confirm, .awrpg-btn-cancel {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px
}
.awrpg-btn-confirm {
    background: #4CAF50;
    color: #fff
}
.awrpg-btn-cancel {
    background: #F44336;
    color: #fff
}
@keyframes fadeIn {
    from {
        transform: scale(0.95);
        opacity: 0
    }
    to {
        transform: scale(1);
        opacity: 1
    }
}
#awrpg-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999
}
#awrpg-modal-container #awrpg-modal-content {
    background-color: #fff;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3)
}
#awrpg-modal-container #awrpg-modal-content img {
    width: 100%
}
#add_new_gallery.awrpg-global,
#add_new_gallery.awrpg-help {
    width: 68%;
}
#add_new_gallery .gallery-info {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 34px 10px 20px 0;
    font-family: Arial, sans-serif;
    line-height: 1.6
}
#add_new_gallery .gallery-info .get-instructed {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase
}
#add_new_gallery .gallery-info .gallery-instructions {
    list-style: decimal inside;
    margin: 0;
    padding: 0;
    color: #333
}
#add_new_gallery .gallery-info .gallery-instructions ul {
    list-style: disc inside;
    margin: 10px 0 0 20px;
    padding: 0
}
#add_new_gallery .gallery-info .gallery-instructions li {
    margin: 10px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px
}
#add_new_gallery .gallery-info .gallery-instructions li code {
    display: block;
    margin: 10px 0;
    padding: 10px;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: Consolas, monospace;
    color: #d14
}
#add_new_gallery .gallery-info .gallery-instructions li strong {
    color: #0056b3;
    font-weight: bold
}
#add_new_gallery .gallery-info .getting-started_video {
    display: flex
}
#add_new_gallery .gallery-info .getting-started_video img {
    max-width: 100%
}
#awrpg-narration {
    position: relative;
    top: 30px;
    margin: 0 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}
#awrpg-narration .awrpgusage-maincontent .awrpg {
    background: #ffffff;
    margin: 0 0 30px;
    padding: 20px 40px
}
#awrpg-narration .awrpgusage-maincontent .awrpg p {
    font-size: 15px;
    line-height: 1.6
}
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar h3 {
    background: #3d1d94;
    border-radius: 50px;
    font-size: 12px;
    color: #fff;
    margin: 0 0 15px;
    padding: 2px 20px;
    text-transform: uppercase;
    text-shadow: none
}
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .awrpgusage-list li {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    list-style: none;
    color: #121212;
    display: block;
    font-weight: 500;
    line-height: 1.5;
    font-size: .775rem;
    margin: 0;
    padding: 4px 5px
}
#awrpg-sidebar .awrpgusage-pro-body .awrpgusage-list li {
    border-top: 1px dotted #bdbdbd
}
#awrpg-sidebar .awrpgusage-pro-body .awrpgusage-list li:first-child {
    border-top: none
}
#awrpg-narration #awrpgusage-note.awrpgusage-maincontent .awrpg .likeit {
    position: relative;
    margin: 0 0 50px;
    font-size: 14px;
    text-transform: uppercase;
    text-align: justify;
    color: #fe7c39;
    font-weight: 600;
    line-height: 1.5
}
#awrpg-narration #awrpgusage-note.awrpgusage-maincontent .awrpg .likeit a {
    position: absolute;
    left: 50%;
    top: calc(100% + 5px);
    font-size: 16px;
    background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
    margin: 10px 0 0;
    padding: 6px 18px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    letter-spacing: 4px;
    transform: translateX(-50%)
}
#awrpg-narration #awrpgusage-note.awrpgusage-maincontent .awrpg .likeit a:hover {
    text-decoration: none;
    color: #ffe000;
    background-image: linear-gradient(335deg, #fe8a39 0%, #fd3838 74%)
}
#awrpg-sidebar {
    position: relative;
    width: 30%;
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    top: 0;
    margin: 0 0 30px;
    gap: 20px;
}
#awrpg-sidebar.top-awrpg-help {
    top: 93px;
}
#awrpg-sidebar.top-awrpg-global {
    top: 136px;
}
#awrpg-sidebar.awrpg-tools {
    width: 30%;
    top: 0;
    left: 20px;
    margin-left: 0
}
#awrpg-sidebar .awrpgusage-sidebar h3 {
    border-bottom: 1px solid #72777c;
    padding-bottom: 7px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    color: #0d0925;
    margin-bottom: 10px;
    line-height: 30px
}
#awrpg-sidebar #awrpgusage-why.awrpgusage-sidebar .awrpgusage-list li {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    list-style: none;
    color: #121212;
    display: block;
    font-weight: 500;
    line-height: 1.5;
    font-size: .775rem;
    margin: 0;
    padding: 4px 5px
}
#awrpg-sidebar .awrpgusage-why-body .awrpgusage-list li {
    border-top: 1px dotted #bdbdbd
}
#awrpg-sidebar .awrpgusage-why-body .awrpgusage-list li:first-child {
    border-top: none
}
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar,
#awrpg-sidebar #awrpgusage-info.awrpgusage-sidebar,
#awrpg-sidebar #awrpgusage-why.awrpgusage-sidebar {
    background-color: #ffffff;
    border: 1px solid #ddd;
    color: #000;
    position: relative;
    max-width: 422px;
    padding: 15px;
    margin-bottom: 20px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    border-radius: 10px;
    transition: all .3s
}
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar,
#awrpg-sidebar #awrpgusage-info.awrpgusage-sidebar {
    height: auto;
    padding-top: 0;
    padding-bottom: 40px;
    border-bottom: 5px solid #7ad03a
}
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar {
    border: none;
    margin-bottom: 35px;
    padding: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10), 0 1.5px 6px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .awrpgusage-pro-header {
    position: relative;
}
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .awrpgusage-pro-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
    pointer-events: none;
}
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .awrpgusage-pro-header img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    display: block;
}
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .awrpgusage-pro-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 22px 26px;
}
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .awrpgusage-pro-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
    padding: 5px;
    border-bottom: none;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.3;
}
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .awrpg {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    color: #555e68;
    line-height: 1.55;
    margin: 0 0 16px;
    padding: 0;
}

/* Feature List — Custom Checkmarks */
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .awrpgusage-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .awrpgusage-list li {
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    line-height: 1.45;
    padding: 7px 0 7px 28px;
    margin: 0;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.15s ease;
}
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .awrpgusage-list li:last-child {
    border-bottom: none;
}
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .awrpgusage-list li:hover {
    background-color: #f8fafb;
}
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .awrpgusage-list li::before {
    content: "\f147";
    font-family: dashicons;
    position: absolute;
    left: 2px;
    top: 7px;
    font-size: 16px;
    line-height: 1.45;
    color: #22c55e;
    font-weight: 400;
}

/* Action Buttons Container */
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .awrpgusage-pro-actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

/* Primary Button — Upgrade to Pro */
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .btn-upgrade {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.35), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    line-height: 1;
    white-space: nowrap;
}
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .btn-upgrade:hover {
    background: linear-gradient(135deg, #5558e6 0%, #7c4fea 50%, #9945ef 100%);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.45), 0 2px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
    color: #ffffff;
    text-decoration: none;
}
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .btn-upgrade:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(99, 102, 241, 0.3);
}

/* Secondary Button — View Demo */
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .btn-demo {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #6366f1;
    background: transparent;
    border: 1.5px solid #c7d2fe;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1;
    white-space: nowrap;
}
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .btn-demo:hover {
    background: #eef2ff;
    border-color: #a5b4fc;
    color: #4f46e5;
    text-decoration: none;
    transform: translateY(-1px);
}
#awrpg-sidebar #awrpgusage-pro.awrpgusage-sidebar .btn-demo:active {
    background: #e0e7ff;
    transform: translateY(0);
}
#awrpg-sidebar #awrpgusage-why.awrpgusage-sidebar {
    height: auto;
    padding: 0 25px 5px;
    border-bottom: 5px solid #7ad03a;
    -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}
#awrpg-sidebar #awrpgusage-why.awrpgusage-sidebar .awrpg p {
    line-height: 1.5rem;
}
#awrpg-sidebar #awrpgusage-why.awrpgusage-sidebar .awrpgusage-why-header img {
    height: 200px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}
#awrpg-sidebar #awrpgusage-why.awrpgusage-sidebar .awrpgusage-why-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    padding: 20px 20px 38px;
    min-height: 200px
}
#awrpg-narration #awrpgusage-note.awrpgusage-maincontent .awrpg,
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg,
#awrpg-sidebar #awrpgusage-why.awrpgusage-sidebar .awrpg {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    margin: 0 0 10px;
    line-height: 30px
}
#awrpg-sidebar #awrpgusage-why.awrpgusage-sidebar .awrpg {
    font-size: 14px;
    font-weight: 400;
    color: #4b4e4d;
    line-height: 1.4;
    margin: 0;
    padding: 0 5px
}
#awrpg-sidebar ul.awrpgusage-list {
    margin: 1em 0 2em;
    padding: 0
}
#awrpg-sidebar #awrpgusage-why.awrpgusage-sidebar a.btn-demo {
    align-items: center;
    appearance: none;
    background-image: radial-gradient(100% 100% at 100% 0, #5adaff 0, #5468ff 100%);
    border: 0;
    border-radius: 6px;
    box-shadow: rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, rgba(58, 65, 111, .5) 0 -3px 0 inset;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    position: absolute;
    right: 15px;
    bottom: 15px;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .15s, transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow, transform;
    font-size: 18px
}
#awrpg-sidebar #awrpgusage-why.awrpgusage-sidebar a.btn-demo:focus {
    box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset
}
#awrpg-sidebar #awrpgusage-why.awrpgusage-sidebar a.btn-demo:hover {
    box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
    transform: translateY(-2px)
}
#awrpg-sidebar #awrpgusage-why.awrpgusage-sidebar a.btn-demo:active {
    box-shadow: #3c4fe0 0 3px 7px inset;
    transform: translateY(2px)
}
#awrpg-sidebar .awrpgusage-sidebar .awrpg .awrpg-first::first-letter {
    font-size: 1.5em;
    line-height: 1;
    font-weight: 700;
    color: #e9950c
}
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg pre {
    overflow: auto;
    margin: 0;
    scrollbar-width: thin;
    scrollbar-color: #d4aa70 #0e8cf1;
    scrollbar-gutter: stable
}
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg pre::-webkit-scrollbar {
    height: 8px
}
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg pre::-webkit-scrollbar-track {
    background-color: #343541
}
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg pre::-webkit-scrollbar-thumb {
    background-color: #0e8cf1;
    border-radius: 100px;
    background-clip: content-box
}
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg code {
    color: #ffd100;
    display: block;
    height: 36px;
    line-height: 36px;
    margin: 0;
    padding: 0 4px;
    font-size: 13px;
    font-weight: 600;
    border-left: 10px solid #343541;
    background: #000000;
    min-width: 410px;
    width: 490px
}
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg ol li code {
    width: auto;
    min-width: 298px
}
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg p {
    font-size: .9rem;
    line-height: 1.5;
    margin-bottom: 10px
}
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg p:last-child {
    margin: 10px 0 -25px
}
#awrpg-narration #awrpgusage-note.awrpgusage-maincontent .awrpg ol,
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg ol {
    margin: 15px 10px 15px 24px;
    padding: 0
}
#awrpg-narration #awrpgusage-note.awrpgusage-maincontent .awrpg ol li,
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg ol li {
    margin: 0 0 5px;
    padding: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: #29333b
}
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg ol li pre {
    margin: 10px -21px;
    width: calc(100% + 24px)
}
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg pre code,
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg pre code {
    border-left-width: 10px;
    border-left-color: #343541;
    background: #000;
    color: #fff;
    height: 50px;
    line-height: 50px
}
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg .awrpg-meta {
    color: hsla(0, 0%, 100%, .6)
}
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg .awrpg-keyword {
    color: #2e95d3
}
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg .awrpg-function {
    color: #f22c3d
}
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg .awrpg-string {
    color: #00a67d
}
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg .awrpg-built_in {
    color: #e9950c
}
#awrpg-narration #awrpgusage-note.awrpgusage-maincontent .awrpg a,
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg a {
    float: none;
    background: none;
    margin: 0;
    padding: 0;
    color: #4CAF50;
    font-size: 100%;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    font-weight: 600;
    text-decoration: none
}
#awrpg-narration #awrpgusage-note.awrpgusage-maincontent .awrpg a:hover,
#awrpg-sidebar #awrpgusage-note.awrpgusage-sidebar .awrpg a:hover {
    color: #135e96;
    text-decoration: underline
}
#awrpg-sidebar #awrpgusage-info.awrpgusage-sidebar .awrpgusage-list {
    margin: 10px 0 0
}
#awrpg-sidebar #awrpgusage-info.awrpgusage-sidebar .awrpgusage-list li {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    list-style: disc;
    margin: 0 0 0 20px;
    font-size: 16px;
    line-height: 30px
}
#awrpg-sidebar #awrpgusage-info.awrpgusage-sidebar a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 600
}
#awrpg-sidebar #awrpgusage-info.awrpgusage-sidebar a:hover {
    text-decoration: underline
}
@media screen and (max-width: 768px) {
    #add_new_gallery .gallery_list table tbody tr {
        display: block;
        margin-bottom: 10px;
        border: 1px solid #ddd;
        border-radius: 8px
    }
    #add_new_gallery .gallery_list table tbody td {
        display: block;
        text-align: right;
        font-size: 14px
    }
    #add_new_gallery .gallery_list table tbody td.gallery_name {
        width: auto
    }
    #add_new_gallery .gallery_list table tbody td:before {
        content: attr(data-label);
        float: left;
        text-transform: uppercase;
        font-weight: bold;
        color: #555
    }
    #add_new_gallery .gallery-info .getting-started_video {
        display: flex
    }
}
@media (max-width: 480px) {
    #add_new_gallery #awrpg_new {
        padding: 15px
    }
    #add_new_gallery #awrpg_new h3 {
        font-size: 1.2rem
    }
    #add_new_gallery #awrpg_new input[type="submit"],
    #add_new_gallery #awrpg_new .button-primary {
        font-size: .9rem
    }
}

/* ==========================================================================
   Accordion Grid Layout (Two Accordions per Row)
   ========================================================================== */
#add_new_gallery .ui-accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: dense;
    gap: 24px;
    align-items: start;
}
#add_new_gallery .ui-accordion>h3.ui-accordion-header:nth-child(4n+1),
#add_new_gallery .ui-accordion>div.ui-accordion-content:nth-child(4n+2) {
    grid-column: 1;
}
#add_new_gallery .ui-accordion>h3.ui-accordion-header:nth-child(4n+3),
#add_new_gallery .ui-accordion>div.ui-accordion-content:nth-child(4n+4) {
    grid-column: 2;
}
#add_new_gallery .ui-accordion .ui-accordion-content {
    margin-top: -24px;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Duplicate Pro Badge Feature
   ========================================================================== */
.awrpg-action-menu>a.awrpg_duplicate_btn_pro {
    display: block;
    padding: 10px 14px;
    color: #a0a5aa;
    cursor: default;
    font-size: 13px;
    line-height: 20px;
    border-bottom: 1px solid #f0f0f1;
    text-decoration: none;
    background-color: #fcfcfc;
    box-shadow: none;
}
.awrpg-action-menu>a.awrpg_duplicate_btn_pro:hover {
    background-color: #f6f7f7;
    color: #a0a5aa;
}
.awrpg-action-menu>a.awrpg_duplicate_btn_pro .dashicons {
    color: #f5a623;
    /* Professional orange lock color */
    vertical-align: middle;
    margin-top: -2px;
}
.awrpg-action-menu>a.awrpg_duplicate_btn_pro .awrpg-pro-badge {
    background-color: #f5a623;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    padding: 2px 4px;
    border-radius: 3px;
    margin-left: 4px;
    vertical-align: middle;
    line-height: 12px;
    display: inline-block;
}

/* ==========================================================================
   Pro Upsell Mock Options (Visual Only)
   ========================================================================== */
.awrpg-pro-label {
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.8;
}
.awrpg-pro-label .dashicons-lock {
    color: #f5a623;
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 1.2;
}
.awrpg-pro-badge {
    background-color: #f5a623;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-left: 5px;
    vertical-align: middle;
}
.awrpg-pro-mock-select,
.awrpg-pro-mock-input {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    height: 40px;
    padding: 10px 14px;
    margin: 0;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background-color: #f1f5f9;
    color: #94a3b8;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.7;
}
.awrpg-pro-mock-select {
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8.825a.7.7 0 0 1-.5-.206L1.83 4.95a.7.7 0 0 1 .99-.99L6 7.14l3.18-3.18a.7.7 0 0 1 .99.99L6.5 8.62a.7.7 0 0 1-.5.206z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
}
.awrpg-pro-mock-colorpicker {
    display: inline-block;
    padding: 0 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 13px;
    height: 34px;
    box-shadow: 0 0 4px 0px rgba(0, 0, 0, .10);
    background-color: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
    pointer-events: none;
    line-height: 34px;
    width: 120px;
}
.awrpg-pro-section-overlay {
    position: relative;
    opacity: 0.8;
}
.awrpg-pro-icon-header {
    color: #f5a623;
    margin-right: 5px;
    vertical-align: sub;
}
.awrpg-pro-mock-toggle {
    position: relative;
    display: inline-block;
    width: 57px;
    height: 26px;
    margin: 15px 30px;
    padding: 0;
    background: #e2e8f0;
    border-radius: 20px;
    border: 5px solid #ffffff;
    opacity: 0.6;
    pointer-events: none;
    cursor: not-allowed;
    vertical-align: middle;
}
.awrpg-pro-mock-toggle .awrpg-pro-toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.awrpg-pro-mock-global-input {
    display: inline-flex;
    align-self: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 350px;
    height: 50px;
    padding: 15px;
    margin: 0 auto;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background-color: #ffffff;
    color: #94a3b8;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.7;
}
.awrpg-pro-mock-textarea {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    height: 150px;
    padding: 10px 14px;
    margin: 0;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background-color: #f1f5f9;
    color: #94a3b8;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.4;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.7;
    white-space: pre-wrap;
}
.awrpg-pro-mock-button {
    display: inline-block;
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed !important;
}