body {
    margin: 0;
    overflow: hidden; /* Hide scrollbars */
}

canvas {
    display: block;
}

#inventory-ui {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 10px;
    border-radius: 5px;
}

.inventory-slot {
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px; /* Smaller font for item names */
    color: white;
    text-align: center;
    position: relative; /* For item count positioning */
}

.item-name {
    font-size: 10px; 
    color: white;
    text-align: center;
    /* Add more styling if needed */
}

.item-count {
    position: absolute;
    bottom: 2px;
    right: 4px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px black; /* Make count more readable */
}

/* Task List Styles */
.task-list {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    min-width: 200px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.task-list h3 {
    margin: 0 0 10px 0;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.task-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.task-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.checkbox {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    border: 1px solid white;
    text-align: center;
    line-height: 16px;
}

.checkbox.checked {
    background-color: rgba(66, 175, 95, 0.6);
    color: white;
}

/* Crafting Messages Styles */
.crafting-messages {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ccc;
}

.crafting-message {
    color: #4CAF50;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
} 