
.apcu-admin .switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}
.apcu-admin .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.apcu-admin .slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.apcu-admin .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
.apcu-admin .apcuo-error{
    border-left: 5px solid red;
    background-color: #fff;
    padding: 5px;
}
.apcu-admin .mt-10{
    margin-top: 15px;
}
.apcu-admin .apcuo-error p{
    margin: 0;
    margin-left: 5px;
}.apcu-admin .apcuo-error h4{
    margin: 5px;
}
.apcu-admin input:checked + .slider {
    background-color: #2196F3;
}
.apcu-admin input:checked + .slider:before {
    transform: translateX(22px);
}
.apcu-stats-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 600px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-family: sans-serif;
}
.apcu-stats-table th, .apcu-stats-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}
.apcu-stats-table th {
    background-color: #f8f8f8;
    text-align: left;
    font-weight: 600;
    color: #333;
}
.apcu-stats-table tr:last-child td {
    border-bottom: none;
}