/*
    KohaCon26 Layout 
    <michael.skarupianski@kit.edu>
*/

:root {
  /* Kit Colors / Adjustments */
  --kit-green: #009682;
  --kit-blue: #4664AA;
  /* Header */
  --conf-theme-header-bg: #1a64a0;
  --conf-theme-header-border-bottom: #0f4c80;
  --conf-theme-header-text: white;

  /* Subtitle area */
  --conf-theme-subtitle-bg: #f5faff;
  --conf-theme-subtitle-border: #d5e4f1;
  --conf-theme-subtitle-text: #24425a;

  /* Menu colors */
  --conf-theme-menu-bg: #f6f6f6;
  --conf-theme-menu-border: #eee;
  --conf-theme-menu-link: #070707;
  --conf-theme-menu-selected: #000000;
  --conf-theme-menu-selected-bg: #dadada;
  --conf-theme-menu-selected-border: #d0d0d0;
  --conf-theme-hover-bg: #2e796a;
  --conf-theme-hover-color: #fff;
  --conf-theme-title-sprite-bg: transparent;
  --conf-theme-announcement-sprite-bg: transparent;
  --conf-theme-announcement-border-top: 1px solid var(--conf-theme-announcement-border);
  --conf-theme-announcement-border-bottom: none;

  /* Support box */
  --conf-theme-support-bg: #f6f6f6;
  --conf-theme-support-border: #ccc;
  --conf-theme-support-header-bg: #1a64a0;
  --conf-theme-support-header-text: #f3f3f3;
  --conf-theme-support-text: #aaa;

  /* Background images */
  --conf-theme-sprite-image: url('/images/conf/sprites_blue.png');

  /* Announcement colors */
  --conf-theme-announcement-bg: #f5faff;
  --conf-theme-announcement-border: #c2d6e7;
  --conf-theme-announcement-text: #0f283d;
}

/* Other CSS as needed */

/* Black Color in Headings instead or orange */
.conference-page header h2 {
    color: #030304;
}
/* Main Heading (KOhaCon26) */
span[itemprop="title"]{
  padding-top: 3rem;
  display: inline-block;
  color:#000 !important;
  font-size:4rem
}
/* Bigger font size on date info */
.datePlace{
  font-size:2rem;
  line-height:1.9rem;
}

/* Everywhere bigger font size */
body {
  font-size:14px
}
/* Hide edit icons for not logged in users */
body[data-user-id="null"] .main-action-bar>.button-bar {
  visibility: hidden;
}
/* KIT style for left side menu */
.menuConfSelected {
  --conf-theme-menu-link: #fff;
  --conf-theme-menu-selected-bg: var(--kit-green);
}
/* KIT styled links for language selection */
#language-list button:not(:disabled){
  color: var(--kit-green)!important;
  font-weight: 600;
}
#language-list button:not(:disabled):is(:hover,:focus-visible) {
    color: inherit!important;
}

/* default links */
a {
    --clickable-text-color: var(--kit-green)!important;
    --link-highlight-color: #000!important;
}