/* This is the CSS for the ID used on page 2. */
#enjoy {
  font-size: 24px;
  color: purple;
}

/* Feel free to add more CSS here! */


/* The CSS below is for the way the website and app look. Be careful when making changes! */

body {
    /* Changing the style below will change the color of the background. */
    background-color: lightblue;
}

#phone {
    height: 600px;
    width: 350px;
    /* Changing the style below will change the color of the phone. */
    background-color: black;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    margin: auto;
    position: relative;
}

#menucontainer {
    position: absolute;
    right: 10px;
    padding: 0;
    margin: 0;
    z-index: 1;
}

#collapsemenu {
    float: right;
    /* Changing the style below will change the color of the menu button. */
    background-color: steelblue;
    border: 2px solid black;
    color: white;
    margin: 0;
    text-align: center;
    text-decoration: none;
    width: 70px;
    height: 30px;
    display: inline-block;
    font-size: 16px;
    border-radius: 0px 0px 0px 10px;
    font-weight: bold;
}

#collapsemenu:active {
    background-color: lightblue;
}

#menu {
    float: right;
    clear: right;
    margin-top: 2px;
    padding: 8px;
    border: 2px solid black;
    /* Changing the style below will change the color of the menu background. */
    background-color: steelblue;
    border-radius: 10px;
    color: white;
    display: none;
}

.menubutton {
    /* Changing the style below will change the color of the menu buttons. */
    background-color: lightblue;
    border: 2px solid black;
    width: 75px;
    color: black;
    font-weight: bold;
    margin: 0;
    padding: 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.menubutton:active {
    background-color: white;
}

#screen {
    height: 550px;
    width: 350px;
    /* Changing the style below will change the color of the screen. */
    background-color: lightgreen; 
    /* Changing the style below will change the default color of the text on the screen. */
    color: black;
    margin: 0px;
    display: inline-block;
}
#feedback {
	padding: 20px;
}

#iphonebutton {
    position: absolute;
    bottom: 5px;
    left: 160px;
}

#pages {
    display: none;
}

#recycling-game {
    text-align: center;
    margin: auto;
}

#bins {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.bin {
    width: 40px; /* Decrease the width */
    height: 80px; /* Decrease the height */
    border: 2px solid black;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: lightgray;
    font-weight: bold;
    padding: 10px;
    flex-direction: column;
    position: relative;
}

.bin-label {
    position: absolute;
    bottom: -20px;
    font-size: 12px;
    background: lightgray;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    pointer-events: none; /* Prevent label from interfering with drag and drop */
}

#trash-cart {
    display: flex;
    justify-content: space-around;
  	padding: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.trash-item {
    width: 70px;
    height: 70px;
    margin: 10px;
    cursor: pointer;
}

button {
    display: block;
    margin: 20px auto; 
    padding: 10px 20px;
    background-color: steelblue;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}


button:hover {
    background-color: lightblue;
}
#directions {
    margin-bottom: 20px;
    text-align: center;
}

#recycle-image {
    margin-top: 10px;
}