/* Import Google Fonts for matching typography */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Body style */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2; /* Fallback color */
    background: linear-gradient(135deg, #1c7d7e 0%, #1c7d7e 33.33%, #6f42c1 33.33%, #6f42c1 66.66%, #fbbc04 66.66%, #fbbc04 100%);
}

/* Container style */
.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Logo style */
.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo .ferritslev {
    display: block;
    font-size: 2rem;
    color: #1c7d7e;
    font-weight: 700;
    transform: rotate(-10deg);
    margin-bottom: -20px;
}

.logo .juniorklub {
    display: block;
    font-size: 3rem;
    color: #fbbc04;
    font-weight: 700;
    transform: rotate(-10deg);
}



/* Form group style */
.form-group label {
    color: #1c7d7e;
    font-weight: 700;
}

.form-control {
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
}

.form-control-file {
    border: none;
    margin-top: 10px;
}

.btn-primary {
    background-color: #fbbc04;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #e6a800;
}

.alert {
    margin-top: 20px;
    padding: 20px;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

/* Contact info */
.contact-info {
    text-align: center;
    margin-top: 20px;
}

.contact-info a {
    color: #1c7d7e;
    text-decoration: none;
    font-weight: 700;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Info button style */
.btn-circle {
	color: #ffffff;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-check-input {
    position: absolute;
    margin-top: .3rem;
    margin-left: 5px;
}
.form-check-label{
	margin-left: 25px;
}

.tooltip {
  position: absolute !important;
  z-index: 1070 !important;
  display: block !important;
  margin: 0 !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  text-align: left !important;
  text-align: start !important;
  text-decoration: none !important;
  text-shadow: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  word-break: normal !important;
  word-spacing: normal !important;
  line-break: auto !important;
  font-size: 0.875rem !important;
  word-wrap: break-word !important;
  opacity: 0 !important;
  transition: opacity 0.15s !important;
}

.tooltip.show {
  opacity: 0.9 !important;
}

.tooltip .tooltip-inner {
  max-width: 200px !important;
  padding: 0.25rem 0.5rem !important;
  color: #fff !important;
  text-align: center !important;
  background-color: #000 !important;
  border-radius: 0.25rem !important;
}

.tooltip .tooltip-arrow {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  border-color: transparent !important;
  border-style: solid !important;
}

.tooltip[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0 !important;
  left: 50% !important;
  border-width: 5px 5px 0 !important;
  border-top-color: #000 !important;
  transform: translateX(-50%) !important;
}

.tooltip[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0 !important;
  left: 50% !important;
  border-width: 0 5px 5px !important;
  border-bottom-color: #000 !important;
  transform: translateX(-50%) !important;
}

.tooltip[data-popper-placement^=left] .tooltip-arrow {
  top: 50% !important;
  right: 0 !important;
  border-width: 5px 0 5px 5px !important;
  border-left-color: #000 !important;
  transform: translateY(-50%) !important;
}

.tooltip[data-popper-placement^=right] .tooltip-arrow {
  top: 50% !important;
  left: 0 !important;
  border-width: 5px 5px 5px 0 !important;
  border-right-color: #000 !important;
  transform: translateY(-50%) !important;
}