img.image-11 {
    margin: auto;
    height: 400px;
}

.recipe-section {
    text-align: left;
}

.recipe-section h4 {
    margin-bottom: 10px;
}

ul.ingredient-list {
    padding-top: 5px;
    list-style-type: none;
    padding-left: 30px;
}

.ingredient-list li {
    align-items: baseline;
    margin-bottom: 5px;
    font-size: 14px;
}

.recipe-directions {
    text-align: left;
}

.recipe-directions p {
    margin-bottom: 10px;
}

.recipe-directions h6 {
    margin-bottom: 5px;
}
  
ul.ingredient-list li::before {
    content: "•";
    color: #fa7851;
    font-size: 14pxm;
    font-weight: 900;
    margin-right: 8px; /* Space between bullet and text */
    display: inline-block;
}

.recipe {
    margin-top: 10px;
}

/* Container styling */
.recipe-details {
    border: 2px solid #ddd; /* Light gray border around the whole section */
    border-radius: 8px; /* Slightly rounded corners */
    padding: 16px; /* Spacing inside the box */
    max-width: 400px; /* Keeps it from being too wide */
    background-color: #f9f9f9; /* Light background for contrast */
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    margin: auto;
}
  
/* Inner boxes styled like table rows */
.recipe-info {
    display: flex;
    justify-content: space-between; /* Aligns text left and right */
    padding: 10px;
    border-bottom: 1px solid #ddd; /* Divider between rows */
}

/* Remove border from last row */
.recipe-info:last-child {
    border-bottom: none;
}

.recipe-info div {
    display: flex;
    flex-direction: column; /* Stack text */
}

.recipe-info strong {
    color: #333;
    font-weight: bold;
    margin-bottom: 4px;
}

.recipe-info span {
    color: #555;
    font-size: 14px;
}

@media (max-width: 350px) {
    .recipe-details {
        max-width: 100%;
    }
    .recipe-info {
        flex-direction: column; /* Stack text on smaller screens */
        text-align: center;
    }
}