/**
* Bert
* Styles for the bertAlert template.
* /lib/bert-alert.html
*/

/*------------------------------------*\
  Reset & Clearfix
\*------------------------------------*/

* {
  margin: 0;
  box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/*------------------------------------*\
  .bert-alert
\*------------------------------------*/

.bert-alert {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 20px;
}

.bert-alert.visible {
  display: block;
}

.bert-alert p {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 22px;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.bert-alert span {
  display: inline-block;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.bert-alert span:hover {
  cursor: pointer;
}

.bert-alert.animated {
  transition-duration: .3s;
  transition-timing-function: linear;
}

/*------------------------------------*\
  .bert-alert .container
\*------------------------------------*/

.bert-alert > .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/*------------------------------------*\
  .bert-alert.default
\*------------------------------------*/

.bert-alert.default {
  background-color: #eee;
  color: #333;
}

/*------------------------------------*\
  .bert-alert.success
\*------------------------------------*/

.bert-alert.success {
  background-color: #75BA50;
  color: #fff;
}

/*------------------------------------*\
  .bert-alert.info
\*------------------------------------*/

.bert-alert.info {
  background-color: #1B9EDB;
  color: #fff;
}

/*------------------------------------*\
  .bert-alert.warning
\*------------------------------------*/

.bert-alert.warning {
  background-color: #FFCF50;
  color: #7B5F17;
}

/*------------------------------------*\
  .bert-alert.danger
\*------------------------------------*/

.bert-alert.danger {
  background-color: #DA5347;
  color: #fff;
}

/*------------------------------------*\
  .bert-alert.fixed-top,
  .bert-alert.fixed-bottom
\*------------------------------------*/

.bert-alert.fixed-top,
.bert-alert.fixed-bottom {
  left: 0px;
  right: 0px;
}

.bert-alert.fixed-top p,
.bert-alert.fixed-bottom p {
  float: left;
  max-width: 95%;
}

.bert-alert.fixed-top span,
.bert-alert.fixed-bottom span {
  float: right;
  font-size: 22px;
  line-height: 21px;
}

/*------------------------------------*\
  .bert-alert.fixed-top
\*------------------------------------*/

.bert-alert.fixed-top {
  top: 0px;
}

.bert-alert.fixed-top span {
  margin-top: -2px;
}

.bert-alert.fixed-bottom span {
  margin-top: 0px;
}

/*------------------------------------*\
  .bert-alert.fixed-top.animated
\*------------------------------------*/

.bert-alert.fixed-top.animated {
  top: -100px;
  transition-property: top;
}

.bert-alert.fixed-top.animated.move {
  top: 0px;
}

/*------------------------------------*\
  .bert-alert.fixed-bottom
\*------------------------------------*/

.bert-alert.fixed-bottom {
  bottom: 0px;
}

/*------------------------------------*\
  .bert-alert.fixed-bottom.animated
\*------------------------------------*/

.bert-alert.fixed-bottom.animated {
  bottom: -100px;
  transition-property: bottom;
}

.bert-alert.fixed-bottom.animated.move {
  bottom: 0px;
}

/*------------------------------------*\
  .bert-alert.growl-top-left,
  .bert-alert.growl-top-right,
  .bert-alert.growl-bottom-right,
  .bert-alert.growl-bottom-left
\*------------------------------------*/

.bert-alert.growl-top-left,
.bert-alert.growl-top-right,
.bert-alert.growl-bottom-right,
.bert-alert.growl-bottom-left {
  max-width: 300px;
}

.bert-alert.growl-top-left,
.bert-alert.growl-top-right {
  top: 20px;
}

.bert-alert.growl-bottom-left,
.bert-alert.growl-bottom-right {
  bottom: 20px;
}

.bert-alert.growl-top-left,
.bert-alert.growl-bottom-left {
  left: 20px;
}

.bert-alert.growl-top-right,
.bert-alert.growl-bottom-right {
  right: 20px;
}

.bert-alert.growl-top-left span,
.bert-alert.growl-top-right span,
.bert-alert.growl-bottom-right span,
.bert-alert.growl-bottom-left span {
  display: inline-block;
  position: absolute;
  width: 25px;
  height: 25px;
  padding: 3px 0 4px;
  top: -10px;
  font-size: 15px;
  line-height: 16px;
  text-align: center;
  background: #333;
  color: #fff;
  border-radius: 50px;
}

.bert-alert.growl-top-left span,
.bert-alert.growl-bottom-left span {
  left: -10px;
}

.bert-alert.growl-top-right span,
.bert-alert.growl-bottom-right span {
  right: -10px;
}

/*------------------------------------*\
  .growl-top-right.animated,
  .growl-bottom-right.animated
\*------------------------------------*/

.bert-alert.growl-top-right.animated,
.bert-alert.growl-bottom-right.animated {
  right: -350px;
  transition-property: right;
}

.bert-alert.growl-top-right.animated.move,
.bert-alert.growl-bottom-right.animated.move {
  right: 20px;
}

/*------------------------------------*\
  .growl-top-left.animated,
  .growl-bottom-left.animated
\*------------------------------------*/

.bert-alert.growl-top-left.animated,
.bert-alert.growl-bottom-left.animated {
  left: -350px;
  transition-property: left;
}

.bert-alert.growl-top-left.animated.move,
.bert-alert.growl-bottom-left.animated.move {
  left: 20px;
}
.admin-container {
  max-width: 1000px;
  margin: 20px auto;
}

.card {
  background: #fff;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  background: #333;
  color: #fff;
  padding: 10px;
}

.admin-table td {
  padding: 8px;
}

.input {
  width: 100%;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.btn-add {
  background: #28a745;
  color: #fff;
  padding: 8px 12px;
  margin-bottom: 10px;
  border: none;
  border-radius: 6px;
}

.btn-delete {
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 5px 8px;
  border-radius: 6px;
}

.login-box {
  max-width: 300px;
  margin: 100px auto;
  text-align: center;
}

.login-box input {
  width: 100%;
  margin: 5px 0;
  padding: 8px;
}

.btn-action {
  background: #007bff;
  color: #fff;
  padding: 10px 15px;
  margin-right: 10px;
  border: none;
  border-radius: 6px;
}

.highlight-input {
  border: 2px solid #007bff;
  border-radius: 6px;
  padding: 6px;
  background: #f8fbff;
}

.setting-input,
.highlight-input {
  border: 1px solid #ccc;
  padding: 4px;
  border-radius: 3px;
}

.labelInput {
  border: 1px solid #999 !important;
  padding: 4px;
  border-radius: 3px;
  box-sizing: border-box;
}
/* CSS declarations go here */
body {
	background-color: #FFF;
	color: #000;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
}
table {
  background-color:#FFFBD0;
  border-collapse:collapse;	
  border: 2px solid black;
  width: max-content;   /* ðŸ”¥ rÃ¤tt plats */
  min-width: 400px;
  margin:10px auto;
}


caption {
	font-variant:small-caps;
	font-size:24px;
}
tr {
	vertical-align:top;
	
}
th {
	background-color:#B3AB75;
	color:#FFF;
	font-size:18px;
}
td
   {
	padding:2px 10px;
	font-size:14px;
}
#highlight {
    background: transparent;
    padding:   5px;
    border-radius: 3px;
	transition-timing-function: ease-out;
	transition: background 0.3s  
}




tr:nth-child(even){background-color: #E8E7B3}

tr.tr2
{
    background-color: transparent;
}

#j2 { background-color: blue;
	  color:#FFF;
	}

.flash{

  -moz-animation: flash 1s ease-out;
  -moz-animation-iteration-count: 1;

  -webkit-animation: flash 1s ease-out;
  -webkit-animation-iteration-count: 1;

  -ms-animation: flash 1s ease-out;
  -ms-animation-iteration-count: 1;

}

@-webkit-keyframes flash {
    0% { background-color:none;}
    50% { background-color:#cccccc;}        
    100% {background-color:none;}
}

@-moz-keyframes flash {
    0% { background-color:none;}
    50% { background-color:#cccccc;}        
    100% {background-color:none;}
}

@-ms-keyframes flash {
    0% { background-color:none;}
    50% { background-color:#cccccc;}        
    100% {background-color:none;}
}

span{
      background: transparent;
    padding: 3px 5px;

    border-radius: 3px;
    display:inline-block;

}

input[type=text], input[type=number], select {
	background: transparent;
	padding: 6px 0;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
	
}

.admin-btn {
  background: #333;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
}

.admin-btn:hover {
  background: #555;
}

h1 {
  text-align: center;
}

.subrow td {
  background: #f9f9f9;
  font-size: 0.9em;
}

.times {
  display: grid;
  gap: 4px;
  width: 100%;

  justify-items: center;   /* ðŸ”¥ centrerar horisontellt */
  align-items: center;     /* ðŸ”¥ centrerar vertikalt */
   margin: 0 auto; 
}

.time {
  display: block !important;   /* ðŸ”¥ tvingar Ã¶ver span-regeln */
  text-align: center;
}
.ss-header th {
  background: #222;
  color: #fff;
  font-size: 11px;
  text-align: center;
  min-width: 400px;
  padding: 4px;
}

.time-row {
  display: flex;
}

.time-header {
  display: inline-block;
  min-width: 80px;
  text-align: center;
  font-weight: bold;
}

th {
  text-align: center;
}

.table-wrapper {
  overflow-x: auto;
  padding: 0 10px;   /* ðŸ”¥ ger luft pÃ¥ sidorna */
}

.status {
  text-align: center;
  margin: 5px 0 10px;
  font-size: 14px;
}

.top-links {
  text-align: center;
  margin-bottom: 10px;
}

.top-links a {
  margin: 0 10px;
  color: #007bff;
  text-decoration: none;
}

.top-links a:hover {
  text-decoration: underline;
}

.info-box {
  max-width: 800px;
  margin: 10px auto;
  padding: 10px;
  background: #f4f8ff;
  border: 1px solid #cce0ff;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
	 white-space: pre-line;   /* 🔥 FIXEN */
}