/* skin_default.css - Default theme (identical to skin_purple).
   Kept as a separate file so existing references to "default" still work.
   This file defines color variables only. All layout/structure rules live in
   theme_common.css, which is loaded BEFORE this file in header.php. */

:root {
  /* Core palette */
  --primary-color:    #511f82;
  --accent-color:     #7e3fd8;
  --secondary-color:  #e6e6fa;

  /* Page surfaces */
  --bg-color:         #ffffff;
  --text-color:       #212529;

  /* Boxed content */
  --card-bg:          #ffffff;
  --row-alt-bg:       #f8f8ff;

  /* Form inputs */
  --input-bg:         #ffffff;
  --input-border:     #511f82;
  --border-color:     #dee2e6;
  --focus-shadow:     rgba(81, 0, 130, 0.4);

  /* Links */
  --link-color:       var(--primary-color);
  --link-hover-color: var(--accent-color);

  /* Secondary button */
  --secondary-btn-color:       var(--primary-color);
  --secondary-btn-hover-text:  white;

  /* Shadows */
  --card-shadow:      0 4px 8px rgba(0, 0, 0, 0.1);
  --dropdown-shadow:  0 4px 6px rgba(0, 0, 0, 0.2);

  /* Typography */
  --font-family:      'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
