/* Core Banner CSS */
.lai-cb-banner { position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 1000px; margin: 0 auto; background: #ffffff; box-shadow: 0 10px 40px rgba(0,0,0,0.15); border-radius: 12px; z-index: 999999; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: #333333; padding: 24px; }
.lai-cb-banner-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.lai-cb-content { flex: 1 1 500px; }
.lai-cb-title { margin: 0 0 10px 0; font-size: 20px; font-weight: 600; color: #111; }
.lai-cb-desc { margin: 0; font-size: 14px; line-height: 1.5; color: #555; }
.lai-cb-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.lai-cb-btn { padding: 10px 20px; border-radius: 6px; font-size: 14px; font-weight: 500; cursor: pointer; border: none; transition: all 0.2s; }
.lai-cb-btn-primary { background: #0056b3; color: #fff; }
.lai-cb-btn-primary:hover { background: #004494; }
.lai-cb-btn-secondary { background: #e0e0e0; color: #333; }
.lai-cb-btn-secondary:hover { background: #d0d0d0; }
.lai-cb-btn-outline { background: transparent; color: #0056b3; border: 1px solid #0056b3; }
.lai-cb-btn-outline:hover { background: #0056b3; color: #ffffff !important; }

/* Modal CSS */
.lai-cb-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 9999999; display: flex; align-items: center; justify-content: center; }
.lai-cb-modal-content { background: #fff; border-radius: 12px; width: 90%; max-width: 600px; max-height: 90vh; display: flex; flex-direction: column; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.lai-cb-modal-header { padding: 20px 24px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.lai-cb-modal-header h2 { margin: 0; font-size: 20px; color: #111;}
.lai-cb-close { background: transparent; border: none; font-size: 24px; cursor: pointer; color: #888; }
.lai-cb-modal-body { padding: 24px; overflow-y: auto; flex: 1; color: #333;}
.lai-cb-category { background: #f9f9f9; padding: 16px; border-radius: 8px; margin-top: 16px; }
.lai-cb-category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.lai-cb-category-header h3 { margin: 0; font-size: 16px; color: #111;}
.lai-cb-badge { font-size: 12px; color: #666; background: #eee; padding: 2px 8px; border-radius: 12px; }
.lai-cb-category p { margin: 0; font-size: 13px; color: #666; }
.lai-cb-modal-footer { padding: 20px 24px; border-top: 1px solid #eee; text-align: right; }

/* Toggle Switch */
.lai-cb-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.lai-cb-switch input { opacity: 0; width: 0; height: 0; }
.lai-cb-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 24px; }
.lai-cb-slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .lai-cb-slider { background-color: #0056b3; }
input:checked + .lai-cb-slider:before { transform: translateX(20px); }

/* Settings Button */
.lai-cb-floating-btn { position: fixed; bottom: 20px; left: 20px; background: #0056b3; color: white; width: 48px; height: 48px; border-radius: 50%; border: none; box-shadow: 0 4px 12px rgba(0,0,0,0.2); cursor: pointer; z-index: 999998; display: flex; align-items: center; justify-content: center; }
.lai-cb-floating-btn svg { width: 24px; height: 24px; }
