/* Publisima Cache - Admin Styles */

.puca-admin-wrap h1 {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
}

.puca-header-icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}

/* Main Switch */
.puca-main-switch-container {
    background: #fff;
    border: 1px solid #c3c4c7;
    padding: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.puca-main-title {
    margin: 0;
    font-size: 18px;
}
.puca-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.puca-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.puca-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}
.puca-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}
input:checked + .puca-slider {
    background-color: #28a745;
}
input:focus + .puca-slider {
    box-shadow: 0 0 1px #28a745;
}
input:checked + .puca-slider:before {
    transform: translateX(26px);
}
.puca-slider.round {
    border-radius: 34px;
}
.puca-slider.round:before {
    border-radius: 50%;
}
#puca-options-wrapper.puca-disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Dashboard Layout */
.puca-dashboard {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
@media (max-width: 960px) {
    .puca-dashboard {
        grid-template-columns: 1fr;
    }
}

.puca-card {
    background: #fff;
    border: 1px solid #c3c4c7;
    padding: 0 20px 20px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}
.puca-card h2 {
    font-size: 16px;
    padding: 15px 0;
    margin: 0 0 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 8px;
}
.puca-full-width {
    width: 100%;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px !important;
}
.puca-info-list {
    list-style: disc;
    padding-left: 20px;
    margin-top: 0;
}

/* Stats Card */
.puca-stats-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.puca-stats-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.puca-stats-list li:last-child {
    border-bottom: none;
}
.puca-stats-list strong {
    font-weight: 600;
}
.puca-stats-list span {
    font-weight: 500;
    background-color: #f0f0f1;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
}
.puca-stat-hit { color: #00732e; background-color: #e5f5e5 !important; }
.puca-stat-miss { color: #d63638; background-color: #fbeaea !important; }

.puca-hit-rate-bar {
    width: 100px;
    height: 20px;
    background-color: #fbeaea;
    border-radius: 4px;
    overflow: hidden;
}
.puca-hit-rate-bar div {
    height: 100%;
    background-color: #28a745;
    color: white;
    font-size: 11px;
    text-align: center;
    line-height: 20px;
    font-weight: 600;
    transition: width .5s ease-in-out;
}
