/**
 * System Module - Global Design Tokens
 *
 * Acts as the centralized design system ("Central Bank") for the plugin.
 * Defines CSS variables for colors, dimensions, gradients, and utility classes
 * that are inherited by other modules to ensure consistency.
 *
 * @package    Kabook_Editor_Tools
 * @subpackage Kabook_Editor_Tools/modules/system/assets
 * @author     Kabook
 * @license    GPL-2.0+
 */

:root {
	/* ==========================================================================
       1. Brand Identity
       ========================================================================== */
	--kabook-primary: #005bea;
	--kabook-primary-dark: #0044b0;
	--kabook-secondary: #00c6fb;
	--kabook-accent: #f1c40f;

	/* Gradients */
	--kabook-btn-primary-bg: linear-gradient(to right, var(--kabook-primary), var(--kabook-secondary));

	/* ==========================================================================
       2. Dimensions & Shapes
       ========================================================================== */
	--kabook-box-radius: 5px;
	--kabook-btn-radius: 50px;
	--kabook-card-radius: 15px;
	--kabook-spacing: 20px;

	/* ==========================================================================
       3. Alert Boxes Palettes
       ========================================================================== */

	/* Info (Blue) */
	--kabook-info-bg: #e3f2fd;
	--kabook-info-text: #0c5460;
	--kabook-info-border: #b8e1fc;

	/* Tip (Yellow) */
	--kabook-tip-bg: #fff9c4;
	--kabook-tip-text: #856404;
	--kabook-tip-border: #ffeeba;

	/* Success (Green) */
	--kabook-success-bg: #e8f5e9;
	--kabook-success-text: #155724;
	--kabook-success-border: #c3e6cb;

	/* Danger (Red) */
	--kabook-danger-bg: #ffebee;
	--kabook-danger-text: #721c24;
	--kabook-danger-border: #f5c6cb;

	/* Quote (Gray) */
	--kabook-quote-bg: #f5f5f5;
	--kabook-quote-text: #383d41;
	--kabook-quote-border: #dddddd;

	/* ==========================================================================
       4. Media Player Defaults
       ========================================================================== */
	--kabook-player-bg: rgba(255, 255, 255, 0.95);
	--kabook-player-text: #333333;
	--kabook-player-accent: var(--kabook-primary);

	/* ==========================================================================
       5. Cards Defaults
       ========================================================================== */
	--kabook-card-luxury-border: var(--kabook-accent);
	--kabook-card-luxury-bg: #ffffff;
	--kabook-card-luxury-text: #333333;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.kabook-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.kabook-text-center {
	text-align: center;
}