﻿body {
    font-family: 'Segoe UI', Calibri, Arial;
    margin: 0;
    background: var(--background);
}

#collage {
    padding: 20px;
}

#collage hr {
    border: none;
    border-top: 2px solid var(--text-light);
    height: 1px;
}

#collage #playPanel {
    background: var(--card);
    padding: 10px 0px;
    margin: 10px auto;
    max-width: 800px;
    width: 95%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

#collage #actualImageBox {
    display: inline-block;
    font-size: 0.8em;
    margin: 10px 10px;
    vertical-align: top;
    width: 280px;
    background: var(--background);
    padding: 15px;
    border-radius: 8px;
}



#collage img#actualImage {
    border: 2px solid var(--accent);
    height: 280px;
    width: 280px;
    border-radius: 8px;
}

#collage #sortable {
    border: 2px solid var(--primary);
    list-style-type: none;
    display: inline-block;
    margin: 10px;
    padding: 0;
    width: 400px;
    border-radius: 8px;
    overflow: hidden;
}

#collage #sortable li {
    background-size: 400% 400%;
    border: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
    float: left;
    width: 100px;
    height: 100px;
}

#collage button {
    background: var(--primary);
    color: white;
    border: none;
    font-size: 14px;
    height: auto;
    width: auto;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 5px;
}

#collage button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

h2 {
    font-weight: normal;
    text-align: center;
    color: var(--text);
}

h3 {
    font-weight: normal;
    margin: 3px 0px;
    text-align: center;
    color: var(--text);
}

#gameOver {
    display: none;
}

#gameOver div {
    background: var(--card);
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

#gameOver h2 {
    text-align: center;
    color: var(--success);
}

#collage #stepBox,
#collage #timeBox {
    display: inline-block;
    background: var(--background);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    width: auto;
}

/* Add a container for the boxes to control layout */
.stats-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0.5rem 0;
}
