﻿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.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.brand-style {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.8rem !important;
    /* TEXTEN får gradient */
    background: linear-gradient(90deg, #ff7f50, #ff4500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    /* BAKGRUNDEN är vit */
    padding: 8px 15px !important;
    background-color: #ffffff !important;
    border-radius: 8px !important;
    transition: background 0.3s ease, transform 0.3s ease !important;
}

    .brand-style:hover {
        /* Gradienten byter håll vid hover (på TEXTEN) */
        background: linear-gradient(90deg, #ff4500, #ff7f50);
        -webkit-background-clip: text;
        background-clip: text;
        transform: scale(1.05) !important;
    }
