/* SITS Admin Styles - Updated Design */
/* ===== LOADING ANIMATION STYLES ===== */

/* Skeleton Loading Animation */
.sits-loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: sits-skeleton-load 1.5s infinite;
}

@keyframes sits-skeleton-load {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
a:focus,
button:focus,
.elementor-tab-title:focus {
    outline: none !important;
    box-shadow: none !important;
}
/* Shimmer Loading Animation */
.sits-shimmer-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.sits-shimmer-content {
    width: 100%;
    max-width: 600px;
}

.sits-shimmer-line {
    height: 12px;
    margin-bottom: 15px;
    border-radius: 4px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: sits-shimmer 1.5s infinite;
}

.sits-shimmer-line:last-child {
    margin-bottom: 0;
}

.sits-shimmer-line.full {
    width: 100%;
}

.sits-shimmer-line.half {
    width: 50%;
}

.sits-shimmer-line.short {
    width: 30%;
}

@keyframes sits-shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Pulse Loading Animation */
.sits-pulse-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.sits-pulse-dot {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    border-radius: 50%;
    background-color: #0f3d4a;
    animation: sits-pulse 1.4s infinite;
}

.sits-pulse-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.sits-pulse-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes sits-pulse {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    30% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gradient Loading Animation */
.sits-gradient-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0f3d4a 0%, #1a5f73 100%);
    border-radius: 8px;
    color: white;
}

.sits-gradient-spinner {
    position: relative;
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.sits-gradient-spinner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: sits-gradient-spin 1s linear infinite;
}

@keyframes sits-gradient-spin {
    to {
        transform: rotate(360deg);
    }
}

.sits-gradient-text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Bouncing Circles Loading */
.sits-bounce-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.sits-bounce-circle {
    width: 14px;
    height: 14px;
    margin: 0 7px;
    border-radius: 50%;
    background-color: #0f3d4a;
    animation: sits-bounce 1.4s infinite ease-in-out;
}

.sits-bounce-circle:nth-child(1) {
    animation-delay: -0.32s;
}

.sits-bounce-circle:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes sits-bounce {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.8;
    }
    40% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

/* Wave Loading Animation */
.sits-wave-loader {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 60px 20px;
    height: 60px;
}

.sits-wave-bar {
    width: 4px;
    margin: 0 4px;
    background: #0f3d4a;
    border-radius: 2px;
    animation: sits-wave 1.2s ease-in-out infinite;
}

.sits-wave-bar:nth-child(1) { animation-delay: -0.24s; }
.sits-wave-bar:nth-child(2) { animation-delay: -0.12s; }
.sits-wave-bar:nth-child(3) { animation-delay: 0s; }
.sits-wave-bar:nth-child(4) { animation-delay: 0.12s; }
.sits-wave-bar:nth-child(5) { animation-delay: 0.24s; }

@keyframes sits-wave {
    0%, 100% {
        height: 20px;
    }
    50% {
        height: 50px;
    }
}

/* Rotating Square Loading */
.sits-rotating-square {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.sits-square-loader {
    width: 50px;
    height: 50px;
    border: 3px solid #e0e0e0;
    border-top-color: #0f3d4a;
    border-right-color: #0f3d4a;
    border-radius: 4px;
    animation: sits-rotate-square 1s linear infinite;
    margin-right: 15px;
}

@keyframes sits-rotate-square {
    to {
        transform: rotate(360deg);
    }
}

/* Glowing Ring Loading */
.sits-glowing-ring {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.sits-ring {
    width: 50px;
    height: 50px;
    border: 4px solid transparent;
    border-top-color: #0f3d4a;
    border-radius: 50%;
    animation: sits-glow-ring 1.5s linear infinite;
    box-shadow: 0 0 20px rgba(15, 61, 74, 0.3);
    margin-right: 15px;
}

@keyframes sits-glow-ring {
    to {
        transform: rotate(360deg);
    }
}

/* Fade In Animation for Content */
.sits-content-fade-in {
    animation: sits-fade-in 0.5s ease-in;
}

@keyframes sits-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* Admin Wrapper */
.sits-admin-wrap {
    margin: 20px 20px 20px 0;
    background: #f5f5f5;
    padding: 0;
}

/* Header Section */
.sits-admin-header {
    background: linear-gradient(135deg, #0f3d4a 0%, #1a5968 100%);
    padding: 40px 40px 30px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 8px 8px 0 0;
}
.button {
        color: #f6f7f7 !important;
        background-color: #2271b1 !important;
}

@media (max-width: 768px) {
    .sits-transactions-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .sits-transactions-header h2 {
        margin-bottom: 20px !important;
        width: 100%;
    }
    
    .sits-transactions-stats {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        gap: 10px !important;
        width: 100%;
        
    }
    
    .sits-stat-box {
        flex: 1;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .sits-transactions-header {
        margin-bottom: 15px !important;
    }
    
    .sits-transactions-header h2 {
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }
    
    .sits-stat-box {
        padding: 12px !important;
    }
    
    .sits-stat-box strong {
        font-size: 20px !important;
    }
    
    .sits-stat-box span {
        font-size: 11px !important;
    }
}
.sits-header-left {
    flex: 1;
}

.sits-main-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.sits-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sits-subtitle {
    margin: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.sits-header-right {
    display: flex;
    align-items: center;
}

.sits-pro-badge-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* background: rgba(255, 255, 255, 0.2); */
    backdrop-filter: blur(10px);
    padding: 10px 10px;
    /* border-radius: 50px; */
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    /* border: 2px solid rgba(255, 255, 255, 0.3); */
}

.sits-pro-badge-header svg {
    color: #ffd700;
}

/* Navigation Tabs */
.sits-nav-tabs {
    display: flex;
    gap: 0;
    background: #0f3d4a;
    padding: 0 40px;
    /* border-bottom: 3px solid #0a2d36; */
}

.sits-nav-tab {
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sits-nav-tab a:focus {
    color: #fff !important;
}
.sits-nav-tab a:not(:focus) {
    color: #fff !important;
    opacity: 1;    
}
.sits-nav-tab:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}
.sits-nav-tab.active a,
.sits-nav-tab.current a,
.sits-nav-tab.is-active a {
    color: #fff !important;
   
}
.sits-nav-tab.active {
     color: #1d2327 !important;  /* Dark text instead of white */
    background: #f5f5f5;
    border-radius: 8px 8px 0 0;
}

/* .sits-nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: #0f3d4a;
} */

.sits-nav-tab-pro {
    color: #ffd700 !important;
}

.sits-nav-tab-pro svg {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}
.sits-filters-wrapper-main {
        display:flex; 
        justify-content: space-between;
}
@media (max-width: 1024px) {
    .sits-filters-wrapper-main {
        flex-direction: column;
        margin-bottom: 10px;
    }
}
/* Main Filter Wrapper */
.sits-filters-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.sits-filters-wrapper form {
    width: 100%;
}

/* Core UI Container */
.main-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

/* Filter Select Dropdowns */
.main-filter > div {
    display: inline-block;
}



/* Filter Button */
.main-filter > div:last-child {
    display: flex;
    justify-content: flex-start;
}



/* Custom Date Range Section */
#sits-custom-date-range {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
}

#sits-custom-date-range > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

#sits-custom-date-range label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 13px;
    color: #555;
}

#sits-custom-date-range input[type="date"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Desktop - 4 columns inline (1201px+) */
@media (min-width: 1201px) {
    .main-filter {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .main-filter > div {
        display: inline-block;
    }

    
}

/* Tablet - 2x2 Grid (769px to 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    .main-filter {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        align-items: stretch;
        margin-bottom: 15px;
    }

    .main-filter > div {
        display: block;
        width: 100%;
    }

    .main-filter > div:last-child {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }



   
}

/* Mobile - 2x2 Grid (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .main-filter {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        align-items: stretch;
        margin-bottom: 15px;
    }

    .main-filter > div {
        display: block;
        width: 100%;
    }

    .main-filter > div:last-child {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .main-filter select {
        width: 100%;
        min-width: unset;
        padding: 11px 12px;
        font-size: 13px;
    }

    

    #sits-custom-date-range > div {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Small Mobile - 2x2 Grid (360px to 480px) */
@media (max-width: 480px) {
    .sits-filters-wrapper {
        padding: 0;
    }

    .main-filter {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        align-items: stretch;
        margin-bottom: 12px;
    }

    .main-filter > div {
        display: block;
        width: 100%;
    }

    .main-filter > div:last-child {
        grid-column: 1 / -1;
        justify-content: stretch;
    }

    .main-filter select {
        width: 100%;
        min-width: unset;
        padding: 10px 10px;
        font-size: 12px;
    }

    

    #sits-custom-date-range {
        padding: 12px;
        margin-bottom: 12px;
        border-radius: 4px;
    }

    #sits-custom-date-range > div {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    #sits-custom-date-range label {
        font-size: 12px;
        margin-bottom: 4px;
    }

    #sits-custom-date-range input[type="date"] {
        width: 100%;
        padding: 9px 10px;
        font-size: 13px;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    
    .main-filter {
        /*grid-template-columns: 1fr;*/
        gap: 8px;
    }

    .main-filter > div {
        width: 100%;
    }

    .main-filter > div:last-child {
        grid-column: auto;
    }

    .main-filter select {
        font-size: 12px;
        padding: 8px 8px;
        width: 100%;
    }

    }

    #sits-custom-date-range {
        padding: 10px;
    }

    #sits-custom-date-range > div {
        grid-template-columns: 1fr;
    }

    #sits-custom-date-range label {
        font-size: 11px;
    }

    #sits-custom-date-range input[type="date"] {
        font-size: 12px;
        padding: 8px 8px;
    }
}
/* Search Container */
.sits-transactions-search {
    width: 100%;
    box-sizing: border-box;
}

/* Search Form */
.sits-transactions-search form {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    align-items: flex-start;
    width: 100%;
}

/* Search Input */


.sits-transactions-search input[type="search"]:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}



.sits-transactions-search .button:hover {
    background-color: #005a87;
}

/* Tablet Breakpoint (768px and below) */
@media (max-width: 768px) {
    .sits-transactions-search form {
        flex-direction: column;
        /*align-items: stretch;*/
        gap: 8px;
    }

    .sits-transactions-search input[type="search"] {
        width: 100%;
        min-width: unset;
        flex: none;
    }

   
}

/* Mobile Breakpoint (480px and below) */
@media (max-width: 480px) {
    .sits-transactions-search {
        padding: 0;
    }

    .sits-transactions-search form {
        flex-direction: column;
        /*align-items: stretch;*/
        gap: 8px;
        width: 100%;
    }

    .sits-transactions-search input[type="search"] {
        width: 100%;
        min-width: unset;
        padding: 10px 10px;
        font-size: 13px;
    }

    .sits-transactions-search input[type="search"]:focus {
        box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
    }

    
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    .sits-transactions-search input[type="search"] {
        font-size: 12px;
        padding: 8px 10px;
    
}

}



@media (max-width: 1024px) {
  .sits-responsive-flex {
    flex-direction: column;
    gap: 20px; 
  }

  .sits-responsive-flex form {
    width: 100%;
  }

  /*.sits-filters-wrapper,*/
  /*.sits-transactions-search {*/
  /*  width: 100%;*/
  /*}*/

  .sits-filters-wrapper select,
  .sits-transactions-search input {
    width: 100%;
  }
}

@media (max-width: 1280px) {
  .wp-list-table.widefat.fixed.striped {
    display: block;
    overflow-x: auto;
    border: 1px solid #ddd;
    white-space: nowrap;
  }
}
/* Active Filters Container */
.sits-active-filters-wrapper {
    background: #e8f5e9;
    border: 1px solid #4caf50;
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Left Section - Filters and Labels */
.sits-filters-display {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    flex: 1;
}

/* Active Filters Label */
.sits-filters-label {
    font-weight: 600;
    color: #2e7d32;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sits-filters-label .dashicons {
    color: #4caf50;
    font-size: 18px;
}

/* Individual Filter Tags */
.sits-filter-tag {
    background: #fff;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 13px;
    border: 1px solid #ddd;
    display: inline-block;
    white-space: nowrap;
}

/*//new div*/


/* Tablet Breakpoint (768px and below) */
@media (max-width: 768px) {
    .sits-active-filters-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 10px 12px;
    }

    .sits-filters-display {
        width: 100%;
        gap: 10px;
    }

    .sits-filters-label {
        width: 100%;
    }

    .sits-filter-tag {
        font-size: 12px;
        padding: 4px 10px;
    }

    
}

/* Mobile Breakpoint (480px and below) */
@media (max-width: 480px) {
    .sits-active-filters-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 10px 10px;
        margin-bottom: 15px;
    }

    .sits-filters-display {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .sits-filters-label {
        width: 100%;
        font-size: 13px;
    }

    .sits-filter-tag {
        font-size: 11px;
        padding: 4px 8px;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

   
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    .sits-active-filters-wrapper {
        padding: 8px 8px;
    }

    .sits-filters-label {
        font-size: 12px;
    }

    .sits-filter-tag {
        font-size: 10px;
        padding: 3px 6px;
    }

   
}
/* Tab Content */
.sits-tab-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 0 0 8px 8px;
    min-height: 500px;
}

/* Widgets Container */
.sits-widgets-container {
    max-width: 100%;
}

/* Widgets Header */
.sits-widgets-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    gap: 30px;
}

.sits-widgets-search {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.sits-widgets-search svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #646970;
    pointer-events: none;
}

.sits-widgets-search input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sits-widgets-search input:focus {
    outline: none;
    border-color: #0f3d4a;
    box-shadow: 0 0 0 3px rgba(15, 61, 74, 0.1);
}

.sits-widgets-toggle {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.sits-toggle-label {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: #1d2327;
    cursor: pointer;
}

.sits-toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.sits-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sits-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.sits-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.sits-toggle-switch input:checked + .sits-toggle-slider {
    background-color: #0f3d4a;
}

.sits-toggle-switch input:checked + .sits-toggle-slider:before {
    transform: translateX(24px);
}

.sits-toggle-description {
    margin: 0;
    font-size: 12px;
    color: #646970;
    font-weight: 400;
}

/* Widget Grid */
.sits-widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

/* Widget Card Base */
.sits-widget-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sits-widget-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #0f3d4a;
}

/* Widget Toggle Switch */
.sits-widget-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.sits-widget-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.sits-widget-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sits-widget-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.sits-widget-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.sits-widget-checkbox:checked + .sits-widget-slider {
    background-color: #0f3d4a;
}

.sits-widget-checkbox:checked + .sits-widget-slider:before {
    transform: translateX(20px);
}

/* Disabled Widget */
.sits-widget-card.sits-widget-disabled {
    opacity: 0.6;
    background: #f9f9f9;
}

.sits-widget-card.sits-widget-disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: #e0e0e0;
}

/* Locked Widget Specific Styles */
.sits-widget-card.sits-widget-locked {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    /* border: 2px dashed #0f3d4a; */
}

.sits-widget-card.sits-widget-locked:hover {
    border-color: #0f3d4a;
    box-shadow: 0 4px 20px rgba(15, 61, 74, 0.15);
}

/* Pro Badge */
.sits-pro-badge-link {
    text-decoration: none;
}

.sits-pro-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, #0f3d4a 0%, #1a5968 100%);
    color: white;
    padding: 8px 15px;
    border-bottom-left-radius: 8px;
    font-weight: bold;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(15, 61, 74, 0.3);
    z-index: 10;
}

.sits-pro-badge svg {
    width: 12px;
    height: 12px;
}

/* Widget Header */
.sits-widget-header {
   
    /* padding-bottom: 15px; */
   
    padding-right: 50px;
}

.sits-widget-header h3 {
    margin: 0;
    font-size: 16px;
    color: #1d2327;
    font-weight: 600;
}

.sits-widget-locked .sits-widget-header h3 {
    color: #0f3d4a;
}

/* Widget Body */
.sits-widget-body {
    font-size: 14px;
    color: #646970;
}

.widget-identifier {
    margin: 10px 0;
    font-size: 12px;
    color: #999;
}

.widget-identifier code {
    background: #f0f0f1;
    padding: 3px 8px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: #0f3d4a;
    font-weight: 600;
}

.widget-description {
    margin: 15px 0;
    line-height: 1.6;
    color: #646970;
}

.sits-widget-locked .widget-description {
    opacity: 0.8;
}

/* Widget Categories */
.widget-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.widget-category-tag {
    background: #f0f0f1;
    color: #646970;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.sits-widget-locked .widget-category-tag {
    background: rgba(15, 61, 74, 0.1);
    color: #0f3d4a;
}

/* Empty State */
.sits-widget-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
}

/* Settings Container */
.sits-settings-container {
    max-width: 1200px;
}

.sits-settings-container .form-table th {
    padding-left: 0;
}

/* Pro Page Styles */
.sits-pro-page {
    max-width: 1200px;
    margin: 0 auto;
}

.sits-pro-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0f3d4a 0%, #1a5968 100%);
    color: white;
    border-radius: 12px;
    margin-bottom: 40px;
}

.sits-pro-header h2 {
    margin: 0 0 15px 0;
    font-size: 36px;
    color: white;
    line-height: normal;
}

.sits-pro-header p {
    margin: 0;
    font-size: 18px;
    opacity: 0.9;
}

.sits-pro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.sits-feature-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sits-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #0f3d4a;
}

.sits-feature-card svg {
    margin-bottom: 20px;
}

.sits-feature-card h3 {
    margin: 0 0 12px 0;
    font-size: 20px;
    color: #1d2327;
}

.sits-feature-card p {
    margin: 0;
    color: #646970;
    line-height: 1.6;
    font-size: 14px;
}

.sits-pro-locked-widgets {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.sits-pro-locked-widgets h3 {
    margin: 0 0 30px 0;
    font-size: 24px;
    text-align: center;
    color: #1d2327;
}

.sits-locked-widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.sits-locked-widget-item {
    padding: 25px;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.sits-locked-widget-item:hover {
    border-color: #0f3d4a;
    background: #ffffff;
    transform: translateY(-2px);
}

.sits-locked-widget-item svg {
    margin-bottom: 15px;
}

.sits-locked-widget-item h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #1d2327;
    font-weight: 600;
}

.sits-locked-widget-item p {
    margin: 0;
    font-size: 13px;
    color: #646970;
    line-height: 1.5;
}

/* Notice Styles */
.sits-widgets-container .notice {
    margin: 0 0 25px 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .sits-widgets-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sits-widgets-search {
        max-width: 100%;
    }
    
    .sits-widgets-toggle {
        align-items: flex-start;
    }
}

@media (max-width: 782px) {
    .sits-admin-header {
        flex-direction: column;
        padding: 30px 20px 20px;
        gap: 20px;
    }
    
    .sits-header-right {
        width: 100%;
        justify-content: center;
    }
    
    .sits-main-title {
        font-size: 24px;
    }
    
    .sits-subtitle {
        font-size: 14px;
    }
    
    .sits-nav-tabs {
        padding: 0 20px;
        overflow-x: auto;
    }
    
    .sits-tab-content {
        padding: 20px;
    }
    
    .sits-widgets-grid {
        grid-template-columns: 1fr;
    }
    
    .sits-pro-features {
        grid-template-columns: 1fr;
    }
    
    .sits-locked-widgets-grid {
        grid-template-columns: 1fr;
    }
}

/* Hidden class for search filter */
.sits-widget-hidden {
    display: none !important;
}
/* Fix for WordPress admin bar conflicts */
.sits-admin-wrap .sits-admin-header,
.sits-admin-wrap .sits-main-title,
.sits-admin-wrap .sits-logo-icon,
.sits-admin-wrap .sits-subtitle {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.sits-admin-wrap .sits-main-title {
    display: flex !important;
}

.sits-admin-wrap .sits-header-left {
    display: block !important;
}

.sits-admin-wrap .sits-header-right {
    display: flex !important;
}