main {
    display: flex;
    justify-content: center;
    margin: 15px;
    flex-direction: row;
    background-color: #FFF;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Added shadow */
    height: calc(100vh - 30px);
}

.disabled-click {
    pointer-events: none;
    opacity: 0.5; /* Optional: Make it look disabled */
}

.game-functions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.game-functions button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100px;
    margin: 0;
}

.shop {
    width: 50%;
    border-left: solid black 1px;
}

.right {
    width: 20%;
    border-left: solid black 1px;
}

.clicker {
    width: 30%;
}

.title {
    text-align: center;
    font-size: 24px;
    text-decoration: underline;
    margin: 10px 0px;
}

.shop-main {
    margin-top: 50px;
}

.shop-title {
    font-size: 20px;
    text-decoration: underline;
    margin-left: 20px;
}

.shop-details {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin: 30px 15px;
}

.clicker-main {
    margin-top: 50px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#total-passive-income {
    margin: 0;
}

.clicker-image-container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clicker-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.clicker-img img {
    width: 50%;
    height: auto;
    max-height: 100%;
    transition: transform 0.5s;
}

.clicker-img img:hover {
    transform: scale(1.1);
}

.banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    background-color: rgba(128, 128, 128, 0.5);
    width: 100%;
    margin-bottom: 50px;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less depending on your design */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.right-main {
    margin-top: 50px;
}

#cpu-generation-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.generation-button:hover {
    scale: 1.02;
}

.locked {
    background-color: gray;
    cursor: not-allowed;
    opacity: 0.5;
}

#gpuList {
    display: none;
}

/* Basic Modal Styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Black background with opacity */
}
  
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
}
  
.modal-footer {
    text-align: right;
}

.shop-buttons {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 50px;
    gap: 10px;
}

.shop-buttons button {
    display: flex;
    justify-content: center;
    background-color: blue;
    color: white;
    width: 175px;
    border-radius: 20px;
    text-align: center;
}

.cpuPassiveIncome,
.gpuPassiveIncome {
    display: none;
}

.key {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    text-align: center;
}