
/* Floating Settings Button */
#settingsButton {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #293ef8;
    color: white;
    font-size: 18px;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#game-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}


/* Modal Styles */
.theme-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.theme-modal .modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.theme-modal h4{
    color: #034261;
}

.theme-modal .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.theme-card {
    width: 300px;
    background-color: #f9f9f9;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.theme-card img {
    width: 300px;
    height: 200px;
}

.theme-card img:hover {
    transform: scale(1.05);
}

.theme-card h3 {
    padding: 15px 0;
    font-size: 1.2em;
    color: #34495e;
}

.theme-card h6 {
    padding: 15px 0;
    font-size: 1.2em;
    color: #34495e;
}

.theme-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

/* Initial style for the checkmark (hidden) */
.checkmark {
    display: none;
    color: green;
    font-size: 18px;
}

/* Show the checkmark when theme is selected */
.theme-card.selected .checkmark {
    display: inline;
}
