@import "forms.css";
@import "base.css";
@import "buttons.css";
@import "layout.css";
@import "chat.css";
@import "table.css";
@import "map.css";



.logout-link {
    position: fixed;
    top: 20px;   /* matchar padding */
    right: 80px;
    z-index: 1200; /* Set higher z-index */
}

.export-link {
    position: fixed;
    top: 20px;   /* matchar padding */
    right: 140px;
    padding: 0px 20px;
    z-index: 1200; /* Set higher z-index */
}

input[type="range"] {
    width: 100%;
    margin-bottom: 10px;
}



.actions{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}





/* Stil för dropdownen */
#status {
    font-size: 14px;         /* större text */
    padding: 5px 5px;      /* mer utrymme inuti rutan */
    margin-bottom: 15px;     /* mellanrum under */
    min-width: 150px;        /* bredd */
    border-radius: 5px;      /* rundade hörn */
    border: 1px solid #ccc;  /* kant */
    background-color: #f5f5f5;
    cursor: pointer;
}

/* Valfri: matcha knapparnas stil */
.button-container select#status {
    display: block;
    margin-bottom: 20px;
}

label[for="status"] {
    font-weight: bold;
    margin-right: 10px;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

