/* Main Settings Page */
.daisy-comments-settings {
    max-width: 1200px;
}

.daisy-comments-header {
    background: #e49b0f;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: #ffffff!important;
}

.daisy-comments-header-content h1 {
    color: #ffffff!important;
    margin: 0 0 10px;
}

.daisy-comments-header-icon .dashicons {
    font-size: 70px;
    width: 70px;
    height: 70px;
    color: #ffffff!important;
}

.daisy-comments-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.daisy-comments-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.daisy-comments-feature-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.daisy-comments-feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #e49b0f;
}

.feature-icon .dashicons {
    font-size: 30px;
    width: 30px;
    height: 30px;
    color: #ffffff;
}

.daisy-comments-feature-box h3 {
    margin-top: 0;
    color: #e49b0f;
}

.daisy-comments-feature-box p {
    color: #666;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.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: #e49b0f;
}

input:focus + .slider {
    box-shadow: 0 0 1px #e49b0f;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}