@font-face {
    font-family: 'LeagueSpartan';
    src: url('./fonts/LeagueSpartan-SemiBold.ttf') format('truetype');
    font-weight: 600; /* viktig siden det er SemiBold */
    font-style: normal;
}

* {
  font-family: 'LeagueSpartan', sans-serif;
  font-size: 15px;
  padding-left: 10px;	
}

#report-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#report-popup-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 640px;
  height: 480px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#report-popup-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

#report-popup-content {
  flex-grow: 1;
  padding: 10px;
  font-family: monospace;
  overflow: auto;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
  white-space: pre-wrap;
}

#report-popup-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 15px;
}

#report-popup-buttons button {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#report-copy-btn {
  background-color: #17a2b8;
  color: white;
}

#report-ok-btn {
  background-color: #28a745;
  color: white;
}

#report-cancel-btn {
  background-color: #dc3545;
  color: white;
}

#popup-session-new-name-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 40%; height: 40%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
}

#popup-session-new-name {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

#popup-session-new-name input {
  width: 80%;
  padding: 8px;
  margin-bottom: 12px;
}

#popup-session-new-name button {
  padding: 6px 12px;
  margin: 0 5px;
}

.ql-toolbar {
  border-top: 2px solid #000000;
  width: 500px;
}

.forslagsliste-align-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

input[type=file] {
  border: 1px solid black;
}

input[type="text"] {
  border-radius: 8px;
}

.login-text-right {
  text-align: right;
}

.combo-text-center {
  text-align: center;
}

.add-new-radio,
.add-new-session,
.handle-session,
.add-new-textfield,
.add-new-button,
.go-button-add-edit,
.radio-add-edit {
  padding: 10px 0 10px 10px;
}

.delegate-number-add-edit {
  padding: 0 0 0 10px;
}

.main-message {
  color: red;
  font-size: 20px;
  text-align: center;
}

.que-message {
  font-size: 20px;
  padding: 10px;
  text-align: center;
}

.move-icons {
  padding-right: 20px;
  text-align: center;
  height: 33px;
  width: 33px;
}

.move-icons-input {
  height: 45px;
  width: 55px;
}

.main-data-add {
  font-size: 25px;
  padding: 10px 0 10px 10px;
}

.go-button,
.go-button-add-remark,
.go-button-events-combo {
  padding-bottom: 0px;
}

.user-file-upload-field,
.file-upload-heading,
.organizations-combo,
.organizations-combo-header,
.events-live-combo,
.events-live-combo-header,
.events-combo,
.events-combo-header {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
}

.main-menu-top-heading {
  font-size: 35px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  text-decoration-line: underline;
}

.main-menu-top-heading-second-line {
  font-size: 20px;
  padding: 5px 10px 10px 10px;
  text-align: center;
}

.main-menu-heading {
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  text-decoration-line: underline;
}

.main-menu-userinfo {
  font-size: 15px;
  padding: 0 10px 10px 10px;
  text-align: center;
}

.login-message-padding,
.logout-logo-padding,
.top-image-padding {
  padding: 10px;
  margin-left: 10px;
}

.logout-button-padding {
  padding: 10px;
  text-align: center;
  float: right;
}

.button-login-padding {
  padding: 10px;
  margin-left: 10px;
}

.button-login {
  vertical-align: top;
  padding-bottom: 10px;
}

.center-text {
  text-align: center;
}

.feed-icon-header,
.feed-icon,
.feed-time,
.feed-number,
.feed-name,
.feed-type,
.feed-logout {
  vertical-align: bottom;
  text-align: left;
}

.feed-icon-header,
.feed-icon {
  font-size: 7px;
}

.feed-time {
  font-size: 20px;
  text-align: center;
}

.feed-number,
.feed-name {
  font-size: 50px;
}

.feed-type {
  font-size: 25px;
}

.feed-logout {
  font-size: 50px;
  text-align: right;
}

.feed-logout-image {
  padding: 10px;
}

.main-menu-message {
  text-align: center;
  padding: 5px 0;
  font-size: 15px;
  color: #ff0000;
}

/* =========================== */
/* 🔥 POPUP OVERLAY STYLING 🔥 */
/* =========================== */

#popup-overlay {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

#popup-overlay > div {
  background: white;
  width: 400px;                /* Fast bredde */
  height: 220px;               /* Fast høyde */
  padding: 30px 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

#popup-overlay p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

#popup-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#submit-btn,
#cancel-btn {
  padding: 8px 16px;
  margin: 5px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

#submit-btn {
  background-color: #007bff;
  color: white;
}

#cancel-btn {
  background-color: #6c757d;
  color: white;
}
