.coffee-recipe-container .app-1-header {
    margin-top: 20px;
}

.coffee-recipe-container {
    padding-top: 20px;
}

.coffee-recipe {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.coffee-recipe-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-right: 10px;
    margin-left: 15px; */
    margin: 20px 15px;
}

.img-label-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    
}

.square-recipe {
    width: 85px;
    height: 85px;
    background-color: #e6e6e6;
    border-radius: 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
    margin-bottom: 8px;
}

a {
    text-decoration: none;
    color: black;
}

.check-progress-btn {
    float: right;
    background: #444;
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    border: none;
    font-size: 12px;
    margin-right: 10px;
    cursor: pointer;
}

.customize-btn {
    display: block;
    width: 80%;
    margin: 40px auto;
    background: #222;
    color: white;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
}