/* a {
    text-decoration: none;
} */
 body {
    background-color: rgb(50, 7, 124);
    text-align: center;
 }
 
.randGame {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* margin: 100px auto 0 auto; */
    /* padding: 20px; */
    /* max-width: 90%; */
    align-items: center;
    color:aqua;
    text-align: center;
}

.loginForm {
    background-color: rgb(129, 183, 249);
    padding: 25px 50px 25px 50px;
    border-radius: 25px;
}

.home-page-flex {
    margin: 100px auto;
}
.centeredImage {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* ===== Search Results Page Styles ===== */
.searchResultImage {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}
.addBtn {
    background-color:rgb(255, 158, 210);
    color:rgb(245, 74, 154);
    margin: 2px;
    border-style: outset;
    border-color:purple;
    border-radius: 5px;
}
.addBtn:active {
    background-color: rgb(245, 74, 154);
    color:rgb(255, 158, 210);
}

h1 {
    font-size: 60px;
}

.movingPromo {
    font-style: italic;
    color:aqua;
    background-color: rgb(129, 183, 249);
    opacity: 0.8;
    position: relative;
    font-size: 40px;
    top: 20%;
    font-family: 'Arial', sans-serif;
    white-space: nowrap;
    padding: 2px 20px;
}

.loop {
    display: inline-block;
    white-space: nowrap;
    animation: marqueeRight 15s linear infinite;
}
.loop span {
    display: inline-block;
    padding-right: 50px;
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

.searchNameLabel{
    color:white;
    padding-top: 30px;
    padding-left: 20px;
}
.searchNameInput{
    background-color: rgb(212, 140, 243);
    color:rgb(97, 32, 249);
}
.searchNameSubmit{
    background-color:rgb(255, 158, 210);
    color:rgb(245, 74, 154);
}
.gamesUnderLabel {
    color:white;
    padding-top: 30px;
    padding-left: 20px;
}
.maxPriceInput {
    background-color: rgb(212, 140, 243);
    color:rgb(97, 32, 249);
}
.maxPriceSubmit {
    background-color:rgb(255, 158, 210);
    color:rgb(245, 74, 154);
}

.minRatingLabel {
    color:white;
    padding-top: 30px;
    padding-left: 20px;
}
.minRatingInput {
    background-color: rgb(212, 140, 243);
    color:rgb(97, 32, 249);
}
.minRatingSubmit {
    background-color:rgb(255, 158, 210);
    color:rgb(245, 74, 154);
}
.padding-left-top {
    padding-left: 20px;
    padding-top: 30px;
}

#testing{
    color: red;
    font-size: 3.5em;
    font-weight: bold;
}
#userErr{
    color:red;
    font-weight: bold;
}

.wishlist-page {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mygames-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 40px;
    padding: 20px;
}

.game-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #8ac6ff;
    padding: 30px 40px;
    border-radius: 25px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 500px;
}
.game-img {
    margin: 10px;
}

.game-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.remove-mygames{
    background-color: #ff4d4d;
    color: white;
    border-radius: 999px;
}

.remove-btn {
    background-color: #ff4d4d;
    color: white;
    border-radius: 999px;
}
  
.add-btn {
    background-color: #4caf50;
    color: white;
    border-radius: 999px;
}

.deal-btn {
    background-color: #4441e5;
    color: white;
    border-radius: 999px;
}

.login-low-width {
    width:20%;
}