body {
    min-width: 100vh;
    width: 100vw;
    background-color: white;
    color: black;
    padding: 0px;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
}
a {
    text-decoration: none;
    color: black;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: transparent;  /* Make scrollbar background transparent */
}
  /* Scrollbar track styles */
::-webkit-scrollbar-track {
    background: transparent; /* Background color of the scrollbar track */
    border-radius: 10px; /* Optional: rounded corners for the track */
}
  
  /* Scrollbar thumb styles */
::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Optional: rounded corners for the thumb */
}
  
  /* Scrollbar thumb hover styles */
::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color of the scrollbar thumb on hover */
}
  
  /* Firefox scrollbar styles */
* {
    scrollbar-width: thin; /* Width of the scrollbar */
    scrollbar-color: #888 #f1f1f1; /* Thumb color and track color */
}

/*rgb(52, 116, 67)*/
.toppart {
    background-color: rgb(230 230 230);
    box-shadow: 0 0 10px lightgrey;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    z-index: 2;
}
.tpLogga {
    width: auto;
    height: 40px;
    padding: 20px 0px;
}
.tpButton {
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.tpMenuIcon {
    width: 40px;
    height: 40px;
}
.pageSelector {
    position: fixed;
    top: 80px;
    height: calc(100vh - 100px);
    width: 20%;
    min-width: 200px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: black;
    padding: 10px 20px;
    z-index: 1;
    background-color: rgb(230 230 230);
    box-shadow: 0 0 10px lightgrey;
}
.psTitle {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: bold;
    padding: 5px;
    border-bottom: 1px solid black;
}
.psText {
    margin-left: 10px;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: normal;
    padding: 3px 0px;
}

.base {
    padding: 30px 45px;
    position: relative;
}



.pc_topflex {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.pctf_title {
    flex: 1;
    font-size: 21px;
    letter-spacing: 3px;
    font-weight: bold;
}
.pctf_button {
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: bold;
    text-align: center;
    border: none;
    background-color: #5E836B;
    color: white;
    padding: 7px 49px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #5E836B;
}
form {
    display: flex;
    flex-direction: row;
    gap: 5px;
}
.form-control {
    border-radius: 5px;
    border: 1px solid black;
    background-color: white;
    padding: 2px 16px;
    height: 22px;
}
#id_user {
    border-radius: 5px;
    border: 1px solid black;
    background-color: white;
    padding: 2px 8px;
    height: 22px;
}
.submitbutton {
    height: 22px;
    border-radius: 5px;
    border: none;
    background-color: #5E836B;
    color: white;
    padding: 4px 8px;
    cursor: pointer;
}
.pc_mainflex {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 20px;
}
.pcmfr_statflex {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 400px;
}
.pcmfrsf_flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 100%;
}
.pcmfrsff_text {
    font-size: 8px;
    letter-spacing: 1px;
    font-weight: bold;
    color: black;
}
.pcmfrsff_bubble {
    width: 100%;
    padding: 12px 0px;
    border-radius: 10px;
    font-size: 20px;
    letter-spacing: 1px;
    color: white;
    font-weight: bold;
    text-align: center;
}
.belaggdiv {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    z-index: -1;
}
.pcmfrsff_extra_text {
    margin-top: 3px;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: normal;
}


@keyframes pop {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pop-effect {
    animation: pop 0.6s ease-out;
}

/* Additional styling for the status elements */
.starttext {
    display: inline-block;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
}

.dropdown-checkbox {
        position: relative;
        display: inline-block;
        width: 150px;
    }

    .dropdown-checkbox-toggle {
        font-size: 14px;
        padding: 2px 16px;
        border-radius: 5px;
        border: 1px solid black;
        background-color: white;
        cursor: pointer;
        user-select: none;
    }

    .dropdown-checkbox-menu {
        display: none;
        position: absolute;
        background-color: white;
        border: 1px solid black;
        border-radius: 5px;
        width: 100%;
        max-height: 250px;
        overflow-y: auto;
        z-index: 999;
        margin-top: 2px;
    }

    .dropdown-checkbox-menu label {
        display: flex;
        justify-content: left;
        align-items: center;
        padding: 6px 10px;
        cursor: pointer;
        font-size: 10px;
    }

    .dropdown-checkbox-menu input[type="checkbox"] {
        margin-right: 8px;
    }