.cactus-dashboard {margin: 20px 20px 20px 2px; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; box-sizing: border-box;}
.cactus-dashboard *, .cactus-dashboard *:before, .cactus-dashboard *:after {box-sizing: border-box;}
.cactus-header {background: #7DA10A; color: #fff; padding: 20px; border-radius: 8px; display: flex; align-items: center; justify-content: space-between;}
.cactus-header h1 {color: #fff; margin: 0; font-size: 24px; display: flex; align-items: center;}
.cactus-grid {display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 20px;}
.cactus-card {background: #fff; border: 1px solid #ccd0d4; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); padding: 20px; transition: transform 0.2s ease;}
.cactus-card:hover {transform: translateY(-2px);}
.cactus-card h2 {border-bottom: 2px solid #f0f0f1; padding-bottom: 10px; margin-top: 0; color: #2c3338; display: flex; align-items: center; font-size: 18px;}
.cactus-card h2 .dashicons {margin-right: 10px; color: #7FA409;}
.cactus-switch-row {display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid #f9f9f9;}
.cactus-switch-row:last-child {border-bottom: none;}
.cactus-switch {position: relative; display: inline-block; width: 40px; height: 20px;}
.cactus-switch input {opacity: 0; width: 0; height: 0;}
.cactus-slider {position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 20px;}
.cactus-slider:before {position: absolute; content: ""; height: 14px; width: 14px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%;}
input:checked + .cactus-slider {background-color: #7FA409;}
input:checked + .cactus-slider:before {transform: translateX(20px);}
.cactus-status-tag {font-size: 10px; text-transform: uppercase; padding: 2px 6px; border-radius: 4px; font-weight: bold;}
.status-on {background: #e7f5d1; color: #4e6a00;}
.status-off {background: #f0f0f1; color: #646970;}
.cactus-save-dashboard-btn, .api-dashboard-btn {background: #7DA10A; border: none; color: white; padding: 12px 30px; border-radius: 6px; font-size: 16px; font-weight: 600; cursor: pointer; transition: 0.3s;}
.cactus-save-dashboard-btn:hover, .api-dashboard-btn:hover {background: #6a8a07;}
.cactus-footer {margin-top: 20px; margin-left: 10px; text-align: left; font-size: 13px; padding: 15px; color: #646970; font-style: italic;}