/* ---------- Import Default CSS ---------- */
html.aui {
  height: 100%; }

.aui {
  color: #666;
  font-family: unset;
  font-size: unset;
  height: 100%;
  line-height: normal; }
  .aui a:hover, .aui a:focus {
    color: unset;
    text-decoration: unset; }
  .aui .dockbar {
    font-size: 1.4em; }
  .aui #footer {
    text-align: left; }
  .aui label {
    color: unset;
    font-weight: unset; }
  .aui label, .aui input, .aui button, .aui select, .aui textarea {
    font-size: 1em;
    line-height: normal; }
  .aui li {
    line-height: normal; }
  .aui img {
    height: inherit;
    max-width: none; }
  .aui h1 {
    font-size: 1.8em; }
  .aui h2 {
    font-size: 1.6em; }
  .aui h3 {
    font-size: 1.4em; }
  .aui h1, .aui h2, .aui h3 {
    margin: 1em 0; }
  .aui h4, .aui h5, .aui h6 {
    font-size: 1.1em; }
  .aui h1, .aui h2, .aui h3, .aui h4, .aui h5, .aui h6 {
    line-height: normal; }
  .aui ul, .aui ol {
    margin: 0; }

/* ---------- Browser normalization ---------- */
html.aui {
  margin: 0px;
  padding: 0px;
  overflow-y: scroll;
  height: 100%; }

.aui {
  /* ---------- Main content body ---------- */
  /*
  	.dockbar {
  	        opacity:0.85;
  	}
  */ }
  .aui body {
    font: 11px Verdana,Arial,Helvetica,sans-serif;
    color: #666;
    margin: 0px;
    padding: 0px;
    min-height: 100%; }
  .aui a {
    color: #00519E;
    text-decoration: none; }
  .aui a:hover, .aui a:active, .aui a:focus {
    color: #6699cc;
    text-decoration: underline; }
  .aui #wrapper {
    background: white;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    min-height: 100%;
    padding: 0; }
  .aui #main-container {
    position: relative;
    padding-top: 8px;
    margin-left: 45px;
    margin-right: 45px;
    width: 910px; }
  .aui #header {
    overflow: hidden; }
  .aui #footer {
    position: relative;
    width: 910px;
    border-top: 1px solid #cccccc;
    color: #666666;
    margin-top: 18px;
    padding: 10px 0 35px; }
  .aui #footer a {
    color: #999999; }
  .aui #footer a:hover, .aui #footer a:active, .aui #footer a:focus {
    color: #333333;
    text-decoration: underline; }
  .aui .footer-author {
    float: right;
    color: grey; }
  .aui #top-corner-container {
    color: #666666;
    position: absolute;
    right: 0;
    top: 20px; }
  .aui #top-corner-container a {
    font-weight: bold;
    padding: 0;
    margin-left: 0px; }
  .aui #top-corner-container a:hover {
    text-decoration: none; }
  .aui #top-corner-container a.language {
    margin-left: 5px; }
  .aui #bottom-corner-container {
    color: #999999;
    position: absolute;
    top: 0;
    right: 0; }
  .aui #bottom-corner-container ul {
    margin: 0;
    padding-top: 10px; }
  .aui #bottom-corner-container ul li {
    float: left;
    display: block;
    list-style: none;
    margin-right: 5px; }
  .aui #bottom-corner-container ul li.last {
    margin-right: 0px; }
  .aui #bottom-corner-container ul li a.bip {
    font-weight: bold;
    color: #F00; }



/* ------------ Code above is a part of uj-main-theme.uniwersytet-jagielloniski ----------------- */
/* ------------ Code below was written for the semktf site usage ----------------- */



  /* ---------- Main content ---------- */
  /* ---------- Main content ---------- */
  /* ---------- Main content ---------- */

/* Main two-column container */

.main-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
  gap: 40px; /* space between columns */
  box-sizing: border-box;
}

/* Left and right columns */
.left-column {
	width: 68%; }
.right-column {
	width: 32%; }

.left-column,
.right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;			/* space between stacked boxes */
  opacity: 0;			/* Start invisible */
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}



/*----- Box styles -----*/
.main-left-box,
.main-right-box {
  background-color: white;
  padding: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  height: auto;
  width: 100%;
  box-sizing: border-box;
  border-radius: 4px;
}
.main-left-box {
  opacity: 0;
  transform: translateX(-5px);
  animation: slideInLeft 1s ease-out forwards;
}

.main-right-box {
  opacity: 0;
  transform: translateX(5px);
  animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.content-box {
  background-color: white;
  padding: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  height: auto;
  width: 100%;
  box-sizing: border-box;
  border-radius: 4px;
  opacity: 0;                 
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.content-box-borderless {
  background-color: white;
  padding: 10px;
  height: auto;
  width: 100%;
  opacity: 0;                 
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}



/* ---------- Header style ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.logo-header img {
  height: 120px;
  margin-right: 30px;
}

.header-content {
  display: flex;
  flex-direction: column;
}

.header-main-title {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 28px;
  margin: 0;
  padding: 10px 0 0 0;
}

.header-main-title a {
  text-decoration: none;
  color: inherit;
  font: inherit;
}

.subtitles {
  display: flex;
  justify-content: center;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: white;
  margin-top: 8px;
}

.subtitle-left {
  margin-right: 12px;
}

.subtitle-right {
  margin-left: 12px;
}

.subtitle-left,
.subtitle-left a,
.subtitle-right,
.subtitle-right a {
  text-decoration: none;
  color: inherit;
  font: inherit;
}

.hide-link,
.hide-link:visited,
.hide-link:hover,
.hide-link:focus,
.hide-link:active {
  color: inherit !important;
  text-decoration: none !important;
  font: inherit !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  cursor: pointer;
}



/* ---------- Main background style ---------- */

body.background {
      background-color: #00519d !important;
      background-image: linear-gradient(to bottom, #003363, #00519d 200px) !important;
      background-repeat: no-repeat !important;
      background-size: 100% !important;
    }



/* ---------- Main-top navigation ---------- */

.aui .main-top-nav {
    padding: 0;
    margin: 0 0 10px 40px; 	/* Top right bottom left */
    width: 910px;
    font-size: 15px;
    font-weight: bold;
    border: 0;
    display: table;
    float: left;
    text-transform: uppercase; }
.aui .main-top-nav ul {
    margin: 40;
    display: table-row;
    *zoom: 1; }
.aui .main-top-nav ul:before {
    content: "";
    display: table; }
.aui .main-top-nav ul:after {
    content: "";
    display: table;
    clear: both; }
.aui .main-top-nav li {
    position: relative;
    margin: 0 12px 0 12px; 		/* text separation */
    height: 4.375rem;
    line-height: 4.375rem;
    float: left; 
    padding-bottom: 9px;
    list-style-type: none;
    display: table-cell;
    vertical-align: top;}
.aui .main-top-nav li:first-child {
    margin-left: -40px; }
.aui .main-top-nav a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0px 12px; 			/* animation separation */
    text-align: center;
    white-space: nowrap;
    transition: all 0.2s linear; 
    font-weight: bold;
    color: #004888;}
.aui .main-top-nav a:hover,
.aui .main-top-nav a:active,
.aui .main-top-nav a:focus,
.aui .main-top-nav a.selected {
    color: #4c8fd0;
    background: #f5f5f5; 
    text-decoration: none;}



/* --- Text set up --- */

.seminar-date {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.8em;
  font-weight: 500;
}

.seminar-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
  color: #004888;
}

.seminar-abstract {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  line-height: 1.2;
  color: #666;
  margin-bottom: 0.6em;
  text-align: justify;
  max-width: 98%;
}


.seminar-author {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1em;
}

.archive-box-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #004888;
  margin-bottom: 0.2em;
}

.archive-box-abstract {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
  margin-top: 1.0em;
  margin-bottom: 0.4em;
  text-align: justify;
}

.archive-box-author {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #333;
  margin-bottom: 0.2em;
}


.archive-box-addendum {
  font-family: 'Lato', sans-serif;
  font-size: 1.0rem;
  font-style: italic;
  color: #333;
  margin-bottom: 0.2em;
}

.content-box-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #004888;
  margin-bottom: 0.4em;
}

.bold-addendum{
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #004888;
  margin-bottom: 0.4em;
}

.content-box-text {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  color: #333;
  text-align: justify;
}

.gray-italic {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-style: italic;
  color: #bbb;
}


/* --- Table --- */
.table-blue-dots {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  list-style-type: disc;
  padding-left: 20px;
}

.table-blue-dots li {
  padding-top: 2px;
  padding-bottom: 2px;
  position: relative;
}

.table-blue-dots li::marker {
  color: #004888;
}

.table-blue-dots a {
  color: inherit;
  text-decoration: none;
}
.table-blue-dots a:hover {
  color: inherit;
  background-color: #f5f5f5;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 0px;
}



/* Bibliography Entry */

.bibliography-entry {
    font-family: "Lato", serif;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5em;
    padding-left: 0px;
}

.bibliography-entry .authors {
    font-weight: bold;
    color: #004888;
}

.bibliography-entry .title {
    font-style: italic;
}

.bibliography-entry .source {
    font-size: 1rem;
}

.bibliography-entry a {
  color: inherit;
  text-decoration: none;
}

.bibliography-entry a:hover {
  color: inherit;
  background-color: #f5f5f5;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 4px;
  padding-left: 0px;
}


/* --- Extras --- */

.horizontal-line {
  border: none;
  height: 1px;
  background-color: #ccc;
  width: 100%;
  margin: 20px 0;
}

.archive-button {
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  text-decoration: none;
  color: #4c8fd0;
  float: right;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 12px;
}