html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.15rem #559757;
    border-color: #559757;
}
.styled-1 > select option:focus {
    border: 1px solid red;
    box-shadow: 0 0 3pt 2pt #719ECE;
}
html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
}

h3 {
    color:#333333;
}
h4 {
    font-size:18px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.form-check-input:checked {
    background-color: #559757 !important;
    border-color: #559757 !important;
}

.register-bg {
    /*background-color: #ececeb;*/
    background-color: #eeeeee;
}

.card-header-bg {
    /*    background-color: #9b968a;
    background-color: #4d699d;
    background-color: #438a45;*/
    background-color: #808080;
}

.btn-register, .btn-register:focus {
    background-color: #559757 !important;
    /*background-color: #2a68a4 !important;*/
    border: #559757 !important;
}

.btn-register:hover {
    background-color: #6dac6e !important;
    border: #3c753d !important;
}

.info-box {
    background-color: #e6e6e6 !important;
    border: none;
}

.gdpr-info {
    background-color: #f4f5f5;
    border: none;
}


/* Container för sponsorloggor */
    .sponsor-link {
    text-decoration: none;
    display: block;
}
.sponsor-logo {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    cursor: pointer;
}

/* Hover-effekt på hela kortet */
.sponsor-link:hover .sponsor-logo {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Bildstil */
.sponsor-logo img {
    max-height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Hover-effekt på bilden */
.sponsor-link:hover .sponsor-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsiv anpassning för små skärmar */
@media (max-width: 576px) {
    .sponsor-logo {
        min-height: 100px;
        padding: 15px;
    }

    .sponsor-logo img {
        max-height: 60px;
    }
}


.placeholder-logo {
    width: 300px;
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    line-height: 1.8;
}

.contact-item i {
    margin-top: 3px;
}

.contact-item a {
    color: #333;
}

.contact-item a:hover {
    color: #0d6efd;
}

a {
    color: #808080;
    font-weight: bold;
}

.logo-responsive {
    max-width: 400px;
}

@media (max-width: 768px) {
    .logo-responsive {
        max-width: 200px;
    }
}

.header-band {
    background-color: #438a45;
    padding: 20px 0;
    margin-bottom: 30px;
}

.header-band img {
    max-height: 80px;
    height: auto;
}

footer {
    background-color: #438a45;
    color: #fff !important;
    /*padding: 20px 0;
    text-align: center;*/
}




/* Administrationsspecifika stilar */

/* Gör klickbara kolumnrubriker mer upptäckbara */
thead th a {
    cursor: pointer;
    padding: 0.5rem; /* Padding finns alltid, inte bara vid hover */
    display: inline-block; /* Gör att padding appliceras korrekt */
    border-radius: 0.25rem;
    transition: background-color 0.2s ease; /* Mjuk övergång för bakgrundsfärgen */
}

    thead th a:hover {
        background-color: #f8f9fa;
        /* Padding är redan definierad ovan, så vi lägger inte till den här */
    }