.left-rectangle {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 900px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    box-sizing: border-box;
  }
  .right-rectangle {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 900px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    box-sizing: border-box;
  }
  .middle-rectangle {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 900px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
  }
  body {
    background-color: rgba(255, 255, 255, 0.4);
    background-image: url('https://vantage.kieranbot.info/img/bgs/background1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    color: #13bfdd;
  }
  .card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #221f1f;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
}
  .container {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    background-color: #302f2f;
  }
  h1 {
    margin-top: 0;
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    text-align: center;
  }
  hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid #ccc;
  }
  .text-center {
    text-align: center;
  }
  .pull-left {
    float: left;
  }
  .pull-right {
    float: right;
  }
  .steam-avatar {
    max-width: 100%;
    height: auto;
  }
  .steam-id {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
  }
  .logout-btn {
    margin-top: 10px;
  }
  .btn-steam {
    background-color: #1b2838;
    border-color: #1b2838;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
  }
  .btn-steam:hover {
    background-color: #142130;
    border-color: #142130;
    color: #fff;
  }
  .btn-steam i {
    margin-right: 10px;
  }
  .bg-primary {
    background-color: #007bff !important;
  }
  .text-primary {
    color: #007bff !important;
  }
  .alert {
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
  }
  .alert-danger {
    background-color: #dc3545;
    border-color: #dc3545;
  }
  .application
  {
background-color: #4caf50;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
}

/* Mobile-friendly styles */
@media screen and (max-width: 768px) {
.left-rectangle,
.right-rectangle,
.middle-rectangle {
width: 100%;
max-width: 400px;
left: 50%;
transform: translateX(-50%);
}
.container,
h1 {
font-size: 20px;
}
hr {
margin-top: 15px;
margin-bottom: 15px;
}
.pull-left,
.pull-right {
float: none;
}
.steam-avatar {
max-width: 80%;
}
.steam-id {
font-size: 14px;
margin-top: 5px;
}
.logout-btn,
.btn-steam {
font-size: 1rem;
padding: 8px 16px;
}
.alert {
font-size: 1rem;
padding: 10px;
margin-bottom: 15px;
}
.application {
padding: 8px 16px;
font-size: 14px;
}
}

#proimage {
  width: 302px;
  height: 378px;
}

#proimage:disabled {
  opacity: 0.5; /* reduce the opacity to indicate it is disabled */
  pointer-events: none; /* disable pointer events to prevent interaction */
}