body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdeca6; /* Light yellow background */
}

header {
    background-color: #4CAF50; /* Green header */
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 36px; /* Larger font size for header */
    border-radius: 0 0 30px 30px; /* Rounded corners only at the bottom */
}

.container {
    display: flex;
    justify-content: center; /* Center items horizontally */
    align-items: flex-start; /* Align items to the top */
    padding: 20px;
}

#toolbox {
    width: 200px;
    padding: 20px;
    background-color: #ffcc80; /* Light orange toolbox background */
    border: 2px solid #f57c00; /* Darker orange border */
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1); /* Soft shadow */
    margin-right: 20px; /* Add some space between toolbox and garden */
    animation: bounceInLeft 1s; /* Animated entrance */
}

#toolbox h2 {
    margin-top: 0;
    font-size: 24px; /* Larger font size for toolbox heading */
    color: #f57c00; /* Darker orange text color */
}

.tool-group {
    margin-bottom: 10px;
}

#toolbox button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 15px; /* Larger padding */
    background-color: #ffa726; /* Orange button background */
    color: white;
    border: none;
    border-radius: 15px; /* Rounded corners */
    cursor: pointer;
    font-size: 18px; /* Larger font size for buttons */
    transition: background-color 0.3s ease; /* Smooth transition */
    animation: fadeIn 1s; /* Animated entrance */
}

#toolbox button:hover {
    background-color: #ff7043; /* Darker orange on hover */
}

#toolbox button:active {
    background-color: #e64a19; /* Even darker orange when clicked */
}

#garden {
    position: relative;
}

#garden-background {
    width: 100%;
    height: auto;
}

#plants {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#messages {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border: 2px solid #f57c00; /* Darker orange border */
    border-radius: 20px; /* Rounded corners */
    text-align: center;
    font-size: 16px; /* Smaller font size for messages */
    margin-top: 20px;
    animation: bounceInUp 1s; /* Animated entrance */
}

#progressBar {
    width: 100%;
    background-color: #fff;
    border: 2px solid #f57c00; /* Darker orange border */
    border-radius: 20px; /* Rounded corners */
    margin-top: 20px;
    animation: fadeIn 1s; /* Animated entrance */
}

#progress {
    height: 20px;
    background-color: #4CAF50; /* Green progress bar */
    border-radius: 20px; /* Rounded corners */
    width: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounceInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounceInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
