.goldButton {
        background: #333; 
        padding: 10px; 
        color: white;
        font-weight: 600; 
        text-decoration: none; /* Tar bort understrykning från länken */
		}
    .goldButton:active, .goldButton:focus, .goldButton:hover {
        background: #333 !important; /* Använder !important för att säkerställa att denna stil prioriteras */
    }
	
a:active, a:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent !important;
}
body {
    font-family: Arial, sans-serif;
    margin: 0px;
	background:black;
}
.overallt {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: black;  
	color:gray;
    clip-path: polygon(0% 15%, 25% 5%, 50% 15%, 75% 5%, 100% 15%, 100% 100%, 0% 100%);
    padding: 25px 0;
    z-index: 1001; /* Så att den ligger över andra element */
}

.overallt::before {
    content: "";
    position: absolute;
    bottom: 0px; /* Justera detta värde för att passa din design */
    left: 0;
    width: 100%;
    height: calc(100% - 2px); /* Lägg till 1px på toppen och botten */
    background: #212121;
    clip-path: polygon(0% 15%, 25% 5%, 50% 15%, 75% 5%, 100% 15%, 100% 100%, 0% 100%);
    z-index: -1;
}
.mobillogo {
    color:#504d4d;
    font-weight:bold;
    font-size: 24px;
	text-transform: none;
}

#menu-btn, .close-btn {
        background: none;
        border: none;
        font-size: 18px; /* Justera storleken om nödvändigt */
        color: white;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
	
.close-btn {
    background: none;
    border: none;
    padding: 15px 40px;
    font-size: 20px;   cursor: pointer;
    -webkit-tap-highlight-color: transparent; /* För iOS Webkit */
     outline: none; /* Tar bort fokusramen */
    }

    /* Tar bort den grå bakgrunden vid aktivt tillstånd */
    .close-btn:active {
        background: none;
		
    }

    /* Alternativt, om du vill hantera fokus också */
    .close-btn:focus {
        background: none;
        outline: none;
    }

	#menu-btn {
        -webkit-tap-highlight-color: transparent; /* För iOS Webkit */
        outline: none; /* Tar bort fokusramen */
    }

    #menu-btn:active {
        background: none;
    }

    #menu-btn:focus {
        background: none;
        outline: none;
    }


	
.mobile-header {
    background-color: white;box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.1);-webkit-box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.1); top: 0; z-index: 1000;
    display: flex;
    justify-content: space-between;
    width: 100%;

}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    font-weight:bold;
    font-size: 24px;
    color:#504d4d;
}

.desktop-menu {
    display: flex;
    gap: 20px;
}

.desktop-menu a, .mobile-dropdown a {
    color: rgb(0 0 0 / 64%);
    text-decoration: none;
}
.desktop-menu li {
    list-style: none; /* Lägg till denna rad */
}
.mobile-menu {
    display: none;
}

.mobile-dropdown {
    display: none;
    padding: 10px 20px;
	overflow-y: auto;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    height: 105%;
    margin: 0;
    list-style: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: white;
    z-index: 1010;
}
.headerfooter {
    border-top: 1px solid rgb(112 112 112 / 19%);
    padding: 10px 20px;
    text-align: center;
    width: 100%;
}
.headerfooter p {
    margin: 0;
    font-size: 16px;
}

/* Förbättringar för mobilmenyn */
.mobile-dropdown li {
padding:20px;
border-bottom: 1px solid rgb(112 112 112 / 19%);
padding-left: 10px; /* padding åt vänster */
}
.mobile-dropdown a {
padding: 0 11px;
}
.mobile-dropdown li:first-child {
    border-top: none; /* Tar bort översta kanten för det första objektet */
}

/* Stil för footer */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background-color: #f4f4f4;
    border-top: 1px solid rgb(112 112 112 / 19%);
}
.footer p {
    margin: 0;
    font-size: 16px;
}

.mobile-dropdown a {
    font-size: 18px; /* Större textstorlek */
    color: #ffffffe6; /* Mörkare teckenfärg */
    text-transform: uppercase; /* Omvandlar texten till versaler */
    text-decoration: none; /* Tar bort understrykning */
    display: block; /* Gör varje objekt till en block-nivå, vilket gör att hela området blir klickbart */
}

.mobile-dropdown a:hover {
    background-color: rgba(0, 0, 0, 0.05); /* Lägger till en mild hover-effekt */
}

@media (max-width: 900px) {
    .desktop-menu {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
	    .navbar{
            padding: 15px 20px
    }
}

@media screen and (min-width: 768px) {
    .mobile-dropdown {
       // display: none !important; /* För att försäkra att den är dold på större skärmar */
    }
.alerts {
  padding: 16px;
  background-color: #f44336;
  color: white;
      margin-left: 20px;
	      margin-right: 20px;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}	