/* Theme Color Set 2 */
:root {
  --theme-color1: #ff6b35;
  --theme-color2: #ff6b35;
  --theme-colored1: #ff6b35;
  --theme-colored2: #ff6b35;
  --theme-colored3: #28a745;
  --theme-colored4: #ffc107;
  --theme-colored5: #6c757d;
}

.text-theme-colored1 { color: var(--theme-color1) !important; }
.text-theme-colored2 { color: var(--theme-color2) !important; }
.bg-theme-colored1 { background-color: var(--theme-color1) !important; }
.bg-theme-colored2 { background-color: var(--theme-color2) !important; }

.btn-theme-colored1 {
  background-color: var(--theme-color1);
  border-color: var(--theme-color1);
  color: #fff;
}

.btn-theme-colored1:hover {
  background-color: #e5552d;
  border-color: #e5552d;
  color: #fff;
}

.btn-theme-colored2 {
  background-color: var(--theme-color2);
  border-color: var(--theme-color2);
  color: #fff;
}

.btn-theme-colored2:hover {
  background-color: #e5552d;
  border-color: #e5552d;
  color: #fff;
}

/* Navigation theme colors */
.menuzord.theme-color2 {
  background-color: var(--theme-color2);
}

/* Icon theme colors */
.icon-theme-colored1 { color: var(--theme-color1); }
.icon-theme-colored4 { color: var(--theme-colored4); }

/* Widget title line bottom */
.widget-title-line-bottom.line-bottom-theme-colored1:after {
  background-color: var(--theme-color1);
} 