/* main.css - Custom Styles for Molecule Turing Game */

body {
    background-color: #f8f9fa; /* Light grey background */
    color: #333;
    font-family: Arial, sans-serif;
}

.navbar-brand, .nav-link {
    font-weight: bold;
}

.footer {
    text-align: center;
    font-size: 0.9em;
}

/* Styles for clickable molecule images */
.clickable-image {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    position: relative;
}


/* Add "Click to select" text below each molecule image */
.clickable-image::after {
    content: "Click to select";
    display: block;
    text-align: center;
    margin-top: 5px;
    color: #666;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Container styling for molecule images */
.molecule-container {
    padding: 15px;
    margin-bottom: 20px;
} 