body {
    background: linear-gradient(70deg, #101625, #191022);
    margin: 0;
    padding: 0;
    color: white;
    background-attachment: fixed;
}
.loginWindow {
    width: 100%;
    box-sizing: border-box; 
    border-radius: 15px; 
    background-color: #141c30;
    margin: auto;
    padding: 60px;
    text-align: center;
    font-size: 18pt;
    -webkit-box-shadow: 0px 4px 10px -1px #00000093; 
    box-shadow: 0px 4px 10px -1px #00000093;
}

.infoTitles {
    width: 100%; margin: auto; text-align: center;
    font-size: 20pt;
    margin-bottom:20px;
}
input {
    width: 100%;
    height: 45px;
    border-radius: 5px;
    border: 0px solid black;
    margin-bottom: 15px;
    box-sizing: border-box;
    background-color: #1d2844;
    border: 1px solid #364979;
    color: white;
    padding: 5px 15px;
}
.inputFull {
    width: 100%;
    margin-bottom: 0px;
}

button {
    width: 100%;
    height: 45px;
    color: white;
    background-color: rgb(0, 107, 207);
    border: 0px solid #1c9135;
    border-radius: 5px;
    transition: 0.2s;
    cursor: pointer;
}

button:hover {
    background-color: rgb(0, 132, 255);
    cursor: pointer;
}

.userListWindow {
    position: relative;
    min-width: 400px;
    max-width: 900px;
    margin: auto;
    padding-top: 100px;
}

.inputUserList {
    width: 47%;
    padding-left: 10px;
    margin-bottom: 0px;
}

.buttonUserList {
    width: 33%; 
    
}
.draftButton {
    width: 100%;
    background-color:#a00000;
    border: 1px solid rgb(255, 208, 208);
    margin-top: 0px !important;
    
}
.draftButton:hover {
    width: 100%;
    background-color:#be0000;
    
}

.adminButton {
    width: 100%;
    background: linear-gradient(to right, #440082, #000099);
    border: 1px solid #220066;
}
.adminButton:hover {
    width: 100%;
    background: linear-gradient(to right, #551199, #1111aa); /* Slightly lighter gradient */
  border-color: #330077;
}


.userListListingBox {

}
.listItemContainer {
    box-sizing: border-box;
    width: 100%;
    border-radius: 5px;
    background-color:#4a586b;
    color: white;
    padding: 5px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center; align-content: center;
    margin-bottom: 5px;
}

.actionButtonDefault {
    width: 20px; background-color: rgb(0, 107, 207); text-align: center; padding: 10px; aspect-ratio: 1 / 1; border-radius: 50%; transition: 0.2s; cursor: pointer;
    position: relative; 
}
.actionButtonDefault:hover {
    background-color: rgb(0, 132, 255); 
}

.actionButtonTrash {
    width: 20px; background-color: rgb(180, 0, 0); text-align: center; padding: 10px; aspect-ratio: 1 / 1; border-radius: 50%; transition: 0.2s; cursor: pointer; position: relative;
}

.ownerInputBox {
    display: flex; flex-wrap: no-wrap; justify-content: space-between;
}
.loginBox {
    width: 400px; margin: auto;
}

.infoBox {
    position: absolute; 
    right: 45px;
    top: -10px;
    display: none;
    background-color: #1d2844;
    border: 1px solid #364979;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 900;
}

.undoBuy:hover .infoBox, .actionButtonDefault:hover .infoBox, .purchased:hover .infoBox {
    display: block;
}
    
.actionButtonTrash:hover {
    background-color: rgb(134, 0, 0);
}

.undoBuy {
    position: relative; background-color: #4a586b; width: 20px; text-align: center; padding: 10px; aspect-ratio: 1 / 1; border-radius: 50%; transition: 0.2s; cursor: default;
}
.undoBuy:hover {
 background-color: #4d2e2e;
}

.purchased {
    position: relative; background-color: #1c9135; width: 20px; text-align: center; padding: 10px; aspect-ratio: 1 / 1; border-radius: 50%; transition: 0.2s; cursor: default;
}
.purchased:hover {
    background-color: #1c9135;
}

.aspect {
    aspect-ratio: 1 / 1;
    padding: 0px;
    margin: 0px;
}

a { color: inherit; text-decoration: inherit} 

.otherUserButton { 
    box-sizing: border-box; text-align: center; font-weight: 700; padding: 10px; width: 40px; margin-left: 10px; 
    border-radius: 50%; background-color: #4a586b; cursor: pointer; transition: 0.2s;
}
.otherUserButton:hover {
   background-color: #313a3f;
}

.logout {background-color: rgb(180, 0, 0); width: 40px; height: 40px; border-radius: 50%; margin-left: 10px;}

.logout:hover {background-color: rgb(134, 0, 0);}



    .headermenu {
        position: fixed;
        top: 0;
        left: 10px;
        right: 10px;
        z-index: 1000;
    }
    .menuadjustment {
        min-width: 400px;
        max-width: 900px;
        margin: auto;
        box-sizing: border-box;
    }
    .menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        align-content: center;
        background-color:#141c30;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }

    .userBox, .addItembox, .draftingBox {
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        align-content: center;
        background-color:#141c30;
        border-radius: 15px;
        width: 100%;
        padding: 10px;
        flex-wrap: wrap;
    }

    .draftingBox {
        width: calc(100%-4px) !important;
        background: linear-gradient(to bottom right, #960000, #017001);
        border: 2px solid #FFFFFF;
        margin-bottom: 20px;
        overflow: hidden;
    }

    .draftingBackground {
        position: absolute; top: 0; bottom:0; left:0; right:0;
        background-image: url("draftBackground.png");
        background-size: cover;
        background-position: center center;
        z-index: 5;
        opacity: 0.05;
    }

    .blurred {
        filter: saturate(0) blur(5px) !important;
        overflow: hidden;
    }

    .adminBox {
        background-color:#141c30;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    select {
        height: 45px;
        padding: 10px 20px;
        border: 1px solid #364979;
        border-radius: 5px;
        background-color: #1d2844;
        color: #fff;
        max-width: 30%;
        width: 300px;
      }
      
      .custom-select {
        appearance: none; /* Hide default arrow */
        -webkit-appearance: none; /* Hide default arrow for Safari */
        -moz-appearance: none; /* Hide default arrow for Firefox */
      }
      
      .custom-select:focus {
        outline: none; /* Remove focus outline */
      }
      
      .custom-select option {
        background-color: #1d2844;
        height: 30px;
        color: #fff;
      }

      .avatar {
        height: 60px; border-radius: 50%; transition: .2s;
        border: 2px solid #0084ff;
        box-sizing: border-box;
        padding: 1px;
      }
      .small {
        width: 39px; height: 39px;
        margin-top: 2px;
      }
      .grey {
        filter: saturate(0);
        border: 0px solid black;
      }
      .avatar:hover {
        transform: scale(1.1); filter: saturate(1);
      }

      .currency {
        height: 45px;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
        background-color: #364979;
        padding: 0px 10px;
        display: flex;
        align-content: center;
        justify-content: center;
        padding-top: 15px;
        box-sizing: border-box;
      }

      .currencyInput {
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        width: 100%;
      }

      .priceBox {
        display:flex; width: 18%;
      }
      @media only screen and (max-width: 600px) {
        .priceBox {
            width: 100%;
            margin-bottom: 15px;
          }
        .loginBox {
            width: 70%; margin: auto;
        }
        .loginWindow {
            width: 100%; 
            border-radius: 5px; 
            background-color: #474f5a;
            margin: auto;
            padding: 20px;
            text-align: center;
            font-size: 18pt;
            box-sizing: border-box;
        }
        
        input {
            width: 100%;
            margin-bottom: 15px;
            box-sizing: border-box;
        }
        
        button {
            width: 100%;
            height: 45px;
            color: white;
            background-color: rgb(0, 107, 207);
            border: 0px solid #1c9135;
            border-radius: 5px;
            transition: 0.2s;
            cursor: pointer;
        }
           
        .inputUserList {
            width: 100%;
        }
        
        .buttonUserList {
            margin-top: 10px;
            width: 100%;
        }
        
        .listItemContainer {
            box-sizing: border-box;
            width: 95%;
            border-radius: 5px;
            background-color:#4a586b;
            color: white;
            padding: 5px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center; align-content: center;
            margin: auto;
            margin-bottom: 5px;
                }
        
        }