/* Minimal expanded CSS for a website foundation */

/* Reset default styles for consistency across browsers */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* Basic settings for html and body */
html {
  font-size: 16px; /* Base font size */
  line-height: 1.5; /* Line height for readability */
  scroll-behavior: smooth; /* Smooth scrolling */
  -webkit-text-size-adjust: 100%; /* Prevent text size adjustment on mobile devices */

  /* mobile */
  height: 100%;
  margin: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; /* System font stack for compatibility */
  color: #333; /* Text color */
  background-color: #fff; /* Background color */
  margin: 0; /* Remove margins */
}
#jox-spa {
  height: 100svh;
  display: flex;
  flex-direction: column;    
  overflow: hidden;
}

/* Basic styles for headings */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: bold;
  margin: 0;
}

/* Basic styles for paragraphs and other block elements */
p, blockquote, pre, code, figure {
  margin: 0;
}

/* Lists */
ul, ol, dl {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Forms */
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
  appearance: button;
  background-color: transparent;
  background-image: none;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* Basic styles for links */
a {
  color: #0053c0;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Basic styles for images and media */
img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Accessibility: focus states */
:focus-visible {
  outline: 2px solid #007bff20; /* Example blue outline for focus, adjust as needed */
  outline-offset: -2px;
}

/* Other elements */
hr {
  border: 0;
  height: 1px;
  background: #ccc;
  margin: 1em 0;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
}

/* Prevent overflow for iframes */
iframe {
  border: 0;
}

/* Hide elements that are hidden */
[hidden] {
  display: none;
}.form-label-on-left {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.form-label-on-left ::part(form-control),
.form-label-on-left wa-input,
.form-label-on-left wa-checkbox,
.form-label-on-left wa-switch {
  display: grid;
  grid-template-columns: 120px 1fr;
}

.form-label-on-left wa-checkbox::part(base),
.form-label-on-left wa-switch::part(base) {
  grid-column: 2;
}

.form-label-on-left ::part(form-control-label),
.form-label-on-left wa-checkbox::part(label),
.form-label-on-left wa-switch::part(label) {
  text-align: right;
  padding-right: 8px;
}
.form-label-on-left ::part(hint) {
  grid-column: 2;
}

wa-input.error::part(input) {
  outline:1px solid #f00;
}
wa-input jox-icon {
  vertical-align: middle;
}

wa-button jox-icon {
  vertical-align: middle;
}.jox-win-container {
  display: flex;
  flex-direction: column;
  transition: width 100ms ease-in-out, height 100ms ease-in-out;
}

.jox-win-header,
.jox-win-footer {
  padding: 0.5rem;
  flex: 0 0 auto; /* po vsebini, ne raste */
  background: #eee;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items:center;
  border-radius: 4px 4px 0 0;
}

.jox-win-footer {
  border-radius: 0 0 4px 4px;
}

.jox-win-footer wa-button::part(base) {
  min-width:6em;
  text-align:center;
}

.jox-win-body {
  position:relative;
  flex: 1 1 auto; /* zapolni preostanek */
  min-height: 0; /* pomembno! dovoli, da se sme skrčiti (Firefox/Safari) */
  overflow-y: auto; /* pokaži scrollbar le, ko je potrebno */
  padding: 0.5rem;
  box-sizing: border-box;
}

.jox-win-header .jox-button-bar {
  margin:-0.5rem;
  flex-wrap: wrap-reverse;
  justify-content: end;  
}

.jox-button-bar {
    display:flex;
}
.jox-button-bar a {
    padding:0.6rem;
    color:#444;
}
.jox-button-bar a:hover {
    background-color:#00000010;
}
.jox-button-bar * {
    vertical-align: middle;
}
.jox-tabs {
  display:flex;
  gap:8px;
}
.jox-tabs a {
  padding:8px 16px;
}
.jox-tabs .act {
  background-color: #00000010;
}.j-pad { padding:8px;}
.j-pad2 { padding:16px;}
.j-pad4 { padding:32px;}
.j-pad-r {padding-right:8px;}
.j-pad-l {padding-left:8px;}
.j-pad-l2 {padding-left:16px;}
.j-pad-r2 {padding-right:16px;}
.j-pad-l4 {padding-left:32px;}
.j-pad-r4 {padding-right:32px;}
.j-pad-b {padding-bottom:8px;}
.j-pad-t {padding-top:8px;}
.j-pad-b2 {padding-bottom:16px;}
.j-pad-t2 {padding-top:16px;}
.j-pad-b4 {padding-bottom:16px;}
.j-pad-t4 {padding-top:16px;}

.j-mar { margin:8px;}
.j-mar2 { margin:16px;}
.j-mar4 { margin:32px;}

.j-mar-r {margin-right:8px;}
.j-mar-l {margin-left:8px;}
.j-mar-r2 {margin-right:16px;}
.j-mar-l2 {margin-left:16px;}
.j-mar-r4 {margin-right:32px;}
.j-mar-l4 {margin-left:32px;}
.j-mar-b {margin-bottom:8px;}
.j-mar-t {margin-top:8px;}
.j-mar-b2 {margin-bottom:16px;}
.j-mar-t2 {margin-top:16px;}
.j-mar-b4 {margin-bottom:32px;}
.j-mar-t4 {margin-top:32px;}

.j-100 {width:100%;}
.j-32em {width:32em !important;}
.j-16em {width:16em !important;}
.j-8em {width:8em !important;}
.j-4em {width:4em !important;}

.j-flexh {
    display:flex;
    flex-direction: row;
    gap:8px;    
}
.j-align-right {
    text-align:right;
}
.j-table {
    width:100%;
    border-collapse: collapse;
    border-spacing: 0;
}
.j-table th {
    text-align: left;
}

.j-hidden {
    display:none !important;
}

:root {
  --wa-color-neutral-fill-loud: #ccc;
  --wa-color-neutral-on-loud: #000;

  --wa-focus-ring-width: 1px;
  --wa-focus-ring-offset: 0;
}
body.user-yes .user-no { display:none !important}
body.user-no .user-yes { display:none !important}

.hero {
  position: relative;
  aspect-ratio: 16/6; /* za desktop */
  background: url('/img/hero1.jpg') center/cover no-repeat;
  display:flex;
  align-items: end;
  justify-content: left;
}
.hero.hero2 {
  background: url('/img/hero2.jpg') center/cover no-repeat !important;
}
.hero.hero3 {
  background: url('/img/hero3.jpg') center/cover no-repeat !important;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
}
.hero__inner {
  position: absolute; left: 6vw; bottom: 8vh; max-width: 560px; color: #fff;
}
.hero.long {
    aspect-ratio: 16/4; 
}

.topmenu {
    background-color: #678005;
    color: #fff;
    -webkit-box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, .28);
    box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, .28);
    position: relative;
    font-family: Roboto Condensed,BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Helvetica,Arial,sans-serif;
    z-index:1000;
}
.topmenu .mid {
    display:flex;
    justify-content: space-between;
}
.topmenu .logo img {
    max-width: 350px;
}

.topmenu .links {
    margin-right:16px;
    margin-top:8px;
}

.topmenu .links .devider {
    display:inline-block;
    vertical-align: middle;
}

.topmenu .links a {
    color:#fff;
    font-weight: 400;
    font-size: 1.2rem;
    display:inline-block;
    padding:8px;
    vertical-align: middle;
}

.boxmenu {
    margin-bottom: calc(3vw);
}
.boxmenu h1 {
    text-shadow: 0 0 6px rgba(0, 0, 0, .56);
    color:#fff;
    font-size: 2rem;
    margin-bottom: 24px;
}

.boxmenu a {
    width: calc(15vw);
    position: relative;
    aspect-ratio: 1/1;
    background-color:#678005;
    border-radius: 6px;
    box-shadow: 2px 4px 12px 0 rgba(0, 0, 0, .5);
    z-index:10;
}
.boxmenu img {
    padding:5%;
}

.infobox {
    background-color: #ffffffc0;
    border-radius: 6px;
    padding: 16px;	
	color:#976409;
    display: inline-block;
	font-size: 30px;
    font-weight: 600;
    margin:16px;
    
}
.infobox h1 {
	color: #ce701a;
	text-shadow:none;
}
.infobox p.t {
    padding-right:40px;
    padding-bottom:32px;
}
.mid {
    margin-left: auto;
    margin-right: auto;
    width: calc(100vw - 24px);
    xxxwidth:auto;
}

.board {
    margin-top:3