.login-error {
    color: #6c0019;
    margin-bottom: 10px;
}

.dashboard-wrapper {
    display: flex;
    min-height: 80vh;
}

.dashboard-sidebar {
    width: 220px;
    background: #f5f5f5;
    border-right: 1px solid #ddd;
    padding: 20px;
}

.dashboard-sidebar a {
    display: block;
    padding: 10px 14px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #333;
    border-radius: 6px;
}

.dashboard-sidebar a.active {
    background: #0073aa;
    color: #fff;
}

.dashboard-content {
    flex: 1;
    padding: 30px;
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

/* Container */
.wpac-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

/* Hide native checkbox */
.wpac-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

/* The slider */
.wpac-slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccd0d4;
    /* WP gray */
    border-radius: 22px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: background-color 0.2s ease-in-out;
}

/* Circle */
.wpac-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    top: 2px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Checked state */
.wpac-switch input:checked+.wpac-slider {
    background-color: #2271b1;
}

.wpac-switch input:checked+.wpac-slider:before {
    transform: translateX(22px);
}

/* Tag container */
#wpac-tag-list {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Tag box */
.wpac-tag {
    display: inline-flex;
    align-items: center;
    background: #f0f0f1;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    border: 1px solid #d0d0d0;
    color: #333;
    position: relative;
}

/* Remove button */
.wpac-tag-remove {
    margin-left: 8px;
    cursor: pointer;
    font-weight: bold;
    color: #444;
}

.wpac-tag-remove:hover {
    color: #b32d2e;
    /* WordPress red */
}