.delete-disable-comments-controls {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.delete-disable-comments-control {
    background: #fff;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    padding: 20px;
}

.delete-disable-comments-control h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 600;
}

.delete-disable-comments-control p {
    margin-top: 0;
    margin-bottom: 15px;
    color: #555;
}

.manage-comments-control {
    background: #fff;
    border: 1px solid #ccd0d4;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

.manage-comments-control h2 {
    margin-top: 0;
    color: #23282d;
    font-size: 1.3em;
    margin-bottom: 1em;
}

.manage-comments-control p {
    color: #646970;
    margin-bottom: 1.5em;
}

.button-danger {
    background: #dc3232 !important;
    border-color: #ba2020 !important;
    color: #fff !important;
}

.button-danger:hover {
    background: #ba2020 !important;
    border-color: #a01c1c !important;
}

/* Card Styling */
.card {
    background: #fff;
    border: 1px solid #c3c4c7;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    margin-top: 20px;
    padding: 20px;
    position: relative;
}

.card h2 {
    margin-top: 0;
    font-size: 1.3em;
    padding: 0;
    line-height: 1.4;
}

.card p {
    margin: 1em 0;
    color: #646970;
}

/* Button Styling */
.button {
    margin-right: 10px;
}

/* Toggle Switch Container */
.toggle-container {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-right: 10px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2271b1;
}

input:disabled + .slider {
    opacity: 0.7;
    cursor: wait;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2271b1;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Status Text */
.toggle-label {
    margin-left: 10px;
    line-height: 34px;
}

.toggle-label.loading {
    opacity: 0.7;
}

/* Status Message */
#status-message {
    margin: 15px 0;
    padding: 8px 12px;
}

/* Success/Error Messages */
.notice {
    display: none;
    margin: 10px 0;
    padding: 10px;
    border-left: 4px solid #00a32a;
}

.notice-error {
    border-left-color: #d63638;
}

.notice-success {
    border-left-color: #00a32a;
}

/* Loading Indicator */
.loading {
    display: none;
    margin-left: 10px;
    vertical-align: middle;
}

.loading:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 